From: Michael Kaufmann Date: Sun, 11 Mar 2018 19:27:09 +0000 (+0100) Subject: hostip: fix compiler warning: 'variable set but not used' X-Git-Tag: curl-7_59_0~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a577059f92fc65bd6b81717f0737f897a5b34248;p=curl hostip: fix compiler warning: 'variable set but not used' --- diff --git a/lib/hostip.c b/lib/hostip.c index 8554d39d1..d2ebe2fa4 100644 --- a/lib/hostip.c +++ b/lib/hostip.c @@ -835,7 +835,7 @@ CURLcode Curl_loadhostpairs(struct Curl_easy *data) char *entry_id; size_t entry_len; char address[64]; - char *addresses = NULL; + char *addresses; char *addr_begin; char *addr_end; char *port_ptr;