From: Timo Sirainen Date: Fri, 3 Sep 2010 14:11:35 +0000 (+0100) Subject: test-imap-match: Don't use "clean" alloconly mempool, there's no point. X-Git-Tag: 2.0.2~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=767aabe13af8c9d098f0f9a44932e2e9aab8b908;p=thirdparty%2Fdovecot%2Fcore.git test-imap-match: Don't use "clean" alloconly mempool, there's no point. --- diff --git a/src/lib-imap/test-imap-match.c b/src/lib-imap/test-imap-match.c index 9d2af1f1e5..c598fc85b5 100644 --- a/src/lib-imap/test-imap-match.c +++ b/src/lib-imap/test-imap-match.c @@ -52,7 +52,7 @@ static void test_imap_match(void) unsigned int i; pool_t pool; - pool = pool_alloconly_create_clean("imap match", 1024); + pool = pool_alloconly_create("imap match", 1024); /* first try tests without inboxcasing */ test_begin("imap match"); @@ -93,7 +93,7 @@ static void test_imap_match_globs_equal(void) struct imap_match_glob *glob; pool_t pool; - pool = pool_alloconly_create_clean("imap match globs equal", 1024); + pool = pool_alloconly_create("imap match globs equal", 1024); test_begin("imap match globs equal"); glob = imap_match_init(pool, "1", FALSE, '/');