dovecot-2.0: test-imap-match: Don't use "clean" alloconly mempoo...

dovecot at dovecot.org dovecot at dovecot.org
Fri Sep 3 17:18:20 EEST 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/fef504af51b1
changeset: 12073:fef504af51b1
user:      Timo Sirainen <tss at iki.fi>
date:      Fri Sep 03 15:11:35 2010 +0100
description:
test-imap-match: Don't use "clean" alloconly mempool, there's no point.

diffstat:

 src/lib-imap/test-imap-match.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r c24b0dd6e3ac -r fef504af51b1 src/lib-imap/test-imap-match.c
--- a/src/lib-imap/test-imap-match.c	Thu Sep 02 18:03:13 2010 +0100
+++ b/src/lib-imap/test-imap-match.c	Fri Sep 03 15:11:35 2010 +0100
@@ -52,7 +52,7 @@
 	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 @@
 	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, '/');


More information about the dovecot-cvs mailing list