]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Increased initial memory pool size
authorTimo Sirainen <tss@iki.fi>
Thu, 23 Aug 2012 08:26:13 +0000 (11:26 +0300)
committerTimo Sirainen <tss@iki.fi>
Thu, 23 Aug 2012 08:26:13 +0000 (11:26 +0300)
src/lib-mail/istream-attachment-extractor.c

index c504b843bddbc66b25c8f7009394634435929a5f..6fb781c2782fd292f69f911d9d41ec9e805e3c14 100644 (file)
@@ -673,7 +673,7 @@ i_stream_create_attachment_extractor(struct istream *input,
        astream->istream.istream.blocking = input->blocking;
        astream->istream.istream.seekable = FALSE;
 
-       astream->pool = pool_alloconly_create("istream attachment", 512);
+       astream->pool = pool_alloconly_create("istream attachment", 1024);
        astream->parser = message_parser_init(astream->pool, input, 0,
                                MESSAGE_PARSER_FLAG_INCLUDE_MULTIPART_BLOCKS |
                                MESSAGE_PARSER_FLAG_INCLUDE_BOUNDARIES);