]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Increased initial memory pool size.
authorTimo Sirainen <tss@iki.fi>
Wed, 7 Apr 2010 01:19:24 +0000 (04:19 +0300)
committerTimo Sirainen <tss@iki.fi>
Wed, 7 Apr 2010 01:19:24 +0000 (04:19 +0300)
--HG--
branch : HEAD

src/plugins/virtual/virtual-storage.c

index 3bb1889677b1ed22c0e12dd86fd6c6d1eec5fcb4..15be2014dae0c86b991a97ebf523e32038d5e175 100644 (file)
@@ -68,7 +68,7 @@ static struct mail_storage *virtual_storage_alloc(void)
        struct virtual_storage *storage;
        pool_t pool;
 
-       pool = pool_alloconly_create("virtual storage", 512+256);
+       pool = pool_alloconly_create("virtual storage", 1024);
        storage = p_new(pool, struct virtual_storage, 1);
        storage->storage = virtual_storage;
        storage->storage.pool = pool;