From 50cb5f38d970d15b83b71aa21438cbd510978082 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 19 Jul 2010 14:54:12 +0100 Subject: [PATCH] Increased initial memory pool size --- src/lib-storage/mail-storage-hooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3