gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 25/205: fix potential use of uninitialized variable


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 25/205: fix potential use of uninitialized variables
Date: Thu, 20 Apr 2017 16:19:25 +0200

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

ng0 pushed a commit to annotated tag gnurl-7.54.0
in repository gnurl.

commit 7b1430c0b4d14043cf0c1cc350399b1b306f3e49
Author: Andrew Krieger <address@hidden>
AuthorDate: Fri Mar 3 16:17:24 2017 -0800

    fix potential use of uninitialized variables
    
    MSVC with LTCG detects this at warning level 4.
    
    Closes #1304
---
 lib/dict.c   | 2 +-
 lib/gopher.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/dict.c b/lib/dict.c
index 69defc4cc..451ec389a 100644
--- a/lib/dict.c
+++ b/lib/dict.c
@@ -92,7 +92,7 @@ const struct Curl_handler Curl_handler_dict = {
 
 static char *unescape_word(struct Curl_easy *data, const char *inputbuff)
 {
-  char *newp;
+  char *newp = NULL;
   char *dictp;
   char *ptr;
   size_t len;
diff --git a/lib/gopher.c b/lib/gopher.c
index 6b57d3519..e6d274648 100644
--- a/lib/gopher.c
+++ b/lib/gopher.c
@@ -78,7 +78,7 @@ static CURLcode gopher_do(struct connectdata *conn, bool 
*done)
 
   curl_off_t *bytecount = &data->req.bytecount;
   char *path = data->state.path;
-  char *sel;
+  char *sel = NULL;
   char *sel_org = NULL;
   ssize_t amount, k;
   size_t len;

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



reply via email to

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