From: Steve Holme Date: Sat, 19 Mar 2016 11:01:36 +0000 (+0000) Subject: imap.c: Fixed compilation warning with /Wall enabled X-Git-Tag: curl-7_48_0~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=97c9d2ae8c472bb199db1b58f0cb117200a2069c;p=curl imap.c: Fixed compilation warning with /Wall enabled warning C4701: potentially uninitialized local variable 'size' used Technically this can't happen, as the usage of 'size' is protected by 'if(parsed)' and 'parsed' is only set after 'size' has been parsed. Anyway, lets keep the compiler happy. --- diff --git a/lib/imap.c b/lib/imap.c index 0339add48..a3d2cad22 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -1102,7 +1102,7 @@ static CURLcode imap_state_fetch_resp(struct connectdata *conn, int imapcode, struct pingpong *pp = &imapc->pp; const char *ptr = data->state.buffer; bool parsed = FALSE; - curl_off_t size; + curl_off_t size = 0; (void)instate; /* no use for this yet */