From b02cd3fca17f636e73ee9e12be73734f74da6e4b Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 30 Jan 2017 18:55:29 +0200 Subject: [PATCH] lib-imap: Fix another compiler warning Unnecessary, but older gcc complains. --- src/lib-imap/imap-bodystructure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib-imap/imap-bodystructure.c b/src/lib-imap/imap-bodystructure.c index 256cd940eb..d9699aa52a 100644 --- a/src/lib-imap/imap-bodystructure.c +++ b/src/lib-imap/imap-bodystructure.c @@ -596,7 +596,7 @@ int imap_bodystructure_parse_full(const char *bodystructure, struct istream *input; struct imap_parser *parser; const struct imap_arg *args; - char *error; + char *error = NULL; int ret; i_assert(*parts == NULL || (*parts)->next == NULL); -- 2.47.3