From d09ff4fc673325365e6e3a38d93870d1f1e5d721 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Sun, 7 Sep 2008 10:54:46 +0300 Subject: [PATCH] pop3: Don't crash in UIDL command. --HG-- branch : HEAD --- src/pop3/commands.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pop3/commands.c b/src/pop3/commands.c index a0528f4a22..976cc227b2 100644 --- a/src/pop3/commands.c +++ b/src/pop3/commands.c @@ -503,8 +503,6 @@ struct cmd_uidl_context { struct mail_search_context *search_ctx; struct mail *mail; unsigned int message; - - struct mail_search_arg search_arg; }; static void pop3_get_uid(struct cmd_uidl_context *ctx, @@ -601,7 +599,6 @@ static bool list_uids_iter(struct client *client, struct cmd_uidl_context *ctx) if (ctx->message == 0) client_send_line(client, "."); - array_free(&ctx->search_arg.value.seqset); i_free(ctx); return found; } -- 2.47.3