From be13dfd5947f0e003cfe5b00f311de6ba69b99d7 Mon Sep 17 00:00:00 2001 From: Rainer Weikusat Date: Sat, 8 Jan 2011 12:46:28 +0100 Subject: Fix crash on --flush. --- pop3.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'pop3.c') diff --git a/pop3.c b/pop3.c index 466bc347..cf950545 100644 --- a/pop3.c +++ b/pop3.c @@ -1115,8 +1115,11 @@ static int pop3_getrange(int sock, old_rec = uid_db_insert(&ctl->oldsaved, id, UID_UNSEEN); } - /* save the number */ - if (new_rec->status == UID_UNSEEN || !ctl->keep) { + /* + * save the number if it will be needed later on + * (messsage will either be fetched or deleted) + */ + if (new_rec->status == UID_UNSEEN || ctl->flush) { set_uid_db_num(&ctl->oldsaved, old_rec, unum); set_uid_db_num(&ctl->newsaved, new_rec, unum); } -- cgit v1.2.3