From: Timo Sirainen Date: Mon, 30 Jan 2017 16:29:36 +0000 (+0200) Subject: lib-imap: Fix compiler warning X-Git-Tag: 2.3.0.rc1~2218 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=49d0f8cb2ee08083c1da6cea969f1390ba643a5a;p=thirdparty%2Fdovecot%2Fcore.git lib-imap: Fix compiler warning Unnecessary, but older gcc complains. --- diff --git a/src/lib-imap/imap-envelope.c b/src/lib-imap/imap-envelope.c index c23f1bbaef..b0982bdd03 100644 --- a/src/lib-imap/imap-envelope.c +++ b/src/lib-imap/imap-envelope.c @@ -222,7 +222,7 @@ bool imap_envelope_parse(const char *envelope, struct istream *input; struct imap_parser *parser; const struct imap_arg *args; - char *error; + char *error = NULL; int ret; input = i_stream_create_from_data(envelope, strlen(envelope));