gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 76/173: parseurl: move back buffer to function scop


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 76/173: parseurl: move back buffer to function scope
Date: Fri, 24 Feb 2017 14:01:38 +0100

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

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

commit e9f45aa91ba3937388c44673f296ba68597e6432
Author: Daniel Stenberg <address@hidden>
AuthorDate: Wed Jan 18 00:01:03 2017 +0100

    parseurl: move back buffer to function scope
    
    Regression since 1d4202ad, which moved the buffer into a more narrow
    scope, but the data in that buffer was used outside of that more narrow
    scope.
    
    Reported-by: Dan Fandrich
    Bug: https://curl.haxx.se/mail/lib-2017-01/0093.html
---
 lib/url.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/url.c b/lib/url.c
index edae1e3f3..cbf19628c 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -4280,6 +4280,7 @@ static CURLcode parseurlandfillconn(struct Curl_easy 
*data,
   CURLcode result;
   bool rebuild_url = FALSE;
   bool url_has_scheme = FALSE;
+  char protobuf[16];
 
   *prot_missing = FALSE;
 
@@ -4409,7 +4410,6 @@ static CURLcode parseurlandfillconn(struct Curl_easy 
*data,
   }
   else {
     /* clear path */
-    char protobuf[16];
     char slashbuf[4];
     path[0]=0;
 

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



reply via email to

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