gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 146/150: Revert "hostip: fix compiler warning: 'var


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 146/150: Revert "hostip: fix compiler warning: 'variable set but not used'"
Date: Fri, 30 Mar 2018 16:50:00 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 98eee3396d7e225d74208cc13c21dce853b10082
Author: Daniel Stenberg <address@hidden>
AuthorDate: Mon Mar 12 23:52:28 2018 +0100

    Revert "hostip: fix compiler warning: 'variable set but not used'"
    
    This reverts commit a577059f92fc65bd6b81717f0737f897a5b34248.
    
    The assignment really needs to be there or we risk working with an
    uninitialized pointer.
---
 lib/hostip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/hostip.c b/lib/hostip.c
index d2ebe2fa4..8554d39d1 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;
+      char *addresses = NULL;
       char *addr_begin;
       char *addr_end;
       char *port_ptr;

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]