diff options
Diffstat (limited to 'pop3.c')
-rw-r--r-- | pop3.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -630,6 +630,12 @@ static int pop3_logout(int sock, struct query *ctl) if (!ok) expunge_uids(ctl); + if (ctl->lastid) + { + free(ctl->lastid); + ctl->lastid = NULL; + } + return(ok); } |