]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Increased initial memory pool size
authorTimo Sirainen <tss@iki.fi>
Mon, 19 Jul 2010 13:54:12 +0000 (14:54 +0100)
committerTimo Sirainen <tss@iki.fi>
Mon, 19 Jul 2010 13:54:12 +0000 (14:54 +0100)
src/lib-storage/mail-storage-hooks.c

index e3b7dc5fab03edcce6816f43ea4a179e0857268a..b20959b168af69e765d8aa52fc62a130b0589cdd 100644 (file)
@@ -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;