Skip to content

Commit

Permalink
lib-imap: Fix compiler warning
Browse files Browse the repository at this point in the history
Unnecessary, but older gcc complains.
  • Loading branch information
sirainen committed Jan 30, 2017
1 parent 3011639 commit 49d0f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib-imap/imap-envelope.c
Expand Up @@ -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));
Expand Down

0 comments on commit 49d0f8c

Please sign in to comment.