From a577059f92fc65bd6b81717f0737f897a5b34248 Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Sun, 11 Mar 2018 20:27:09 +0100 Subject: hostip: fix compiler warning: 'variable set but not used' --- lib/hostip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.1