gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 54/222: urlapi: Expression 'storep' is always true


From: gnunet
Subject: [gnurl] 54/222: urlapi: Expression 'storep' is always true
Date: Thu, 07 Nov 2019 00:09:10 +0100

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 36fbb10071d8ae17676b7eb8ec437283cbc6113d
Author: Daniel Stenberg <address@hidden>
AuthorDate: Thu Sep 19 10:20:35 2019 +0200

    urlapi: Expression 'storep' is always true
    
    Fixes warning detected by PVS-Studio
    Fixes #4374
---
 lib/urlapi.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/urlapi.c b/lib/urlapi.c
index 65e5ef58d..903fe1804 100644
--- a/lib/urlapi.c
+++ b/lib/urlapi.c
@@ -1348,7 +1348,8 @@ CURLUcode curl_url_set(CURLU *u, CURLUPart what,
   default:
     return CURLUE_UNKNOWN_PART;
   }
-  if(storep) {
+  DEBUGASSERT(storep);
+  {
     const char *newp = part;
     size_t nalloc = strlen(part);
 

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



reply via email to

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