From: Timo Sirainen Date: Mon, 30 Jan 2017 16:55:29 +0000 (+0200) Subject: lib-imap: Fix another compiler warning X-Git-Tag: 2.3.0.rc1~2209 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b02cd3fca17f636e73ee9e12be73734f74da6e4b;p=thirdparty%2Fdovecot%2Fcore.git lib-imap: Fix another compiler warning Unnecessary, but older gcc complains. --- 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);