From: Timo Sirainen Date: Mon, 19 Jul 2010 13:54:12 +0000 (+0100) Subject: Increased initial memory pool size X-Git-Tag: 2.0.rc3~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50cb5f38d970d15b83b71aa21438cbd510978082;p=thirdparty%2Fdovecot%2Fcore.git Increased initial memory pool size --- diff --git a/src/lib-storage/mail-storage-hooks.c b/src/lib-storage/mail-storage-hooks.c index e3b7dc5fab..b20959b168 100644 --- a/src/lib-storage/mail-storage-hooks.c +++ b/src/lib-storage/mail-storage-hooks.c @@ -160,7 +160,7 @@ hook_build_init(void (**vfuncs)(), size_t size) i_assert((size % sizeof(void (*)())) == 0); - pool = pool_alloconly_create("hook build context", 1024); + pool = pool_alloconly_create("hook build context", 2048); ctx = p_new(pool, struct hook_build_context, 1); ctx->pool = pool; ctx->size = size;