From: Timo Sirainen Date: Mon, 26 Jul 2004 15:30:11 +0000 (+0300) Subject: fix X-Git-Tag: 1.1.alpha1~3741 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3211d04d92d65d4ea844e6c6d7e123775147b9b2;p=thirdparty%2Fdovecot%2Fcore.git fix --HG-- branch : HEAD --- diff --git a/src/imap/cmd-list.c b/src/imap/cmd-list.c index 35031044e2..931b1176b7 100644 --- a/src/imap/cmd-list.c +++ b/src/imap/cmd-list.c @@ -124,7 +124,6 @@ list_namespace_mailboxes(struct client *client, struct imap_match_glob *glob, imap_quote_append_string(str, name, FALSE); client_send_line(client, str_c(str)); } - t_pop(); if (!inbox_found && ns->inbox && match_inbox) { /* INBOX always exists */ @@ -132,6 +131,7 @@ list_namespace_mailboxes(struct client *client, struct imap_match_glob *glob, str_printfa(str, "* LIST () \"%s\" \"INBOX\"", ns->sep_str); client_send_line(client, str_c(str)); } + t_pop(); return mail_storage_mailbox_list_deinit(ctx); }