From bbed340ce8194098d04a7a118f867d80dd1e7331 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 11 May 2004 00:25:42 +0300 Subject: [PATCH] index wasn't unlocked initially --HG-- branch : HEAD --- src/pop3/client.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pop3/client.c b/src/pop3/client.c index 3ac77d4cba..2a0fc1cec3 100644 --- a/src/pop3/client.c +++ b/src/pop3/client.c @@ -98,8 +98,10 @@ static int init_mailbox(struct client *client) return FALSE; } - if (!failed) + if (!failed) { + mailbox_transaction_commit(t); return TRUE; + } /* well, sync and try again */ if (mailbox_sync(client->mailbox, 0) < 0) { -- 2.47.3