gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 82/282: curl: avoid using strlen for testing if a string is empt


From: gnunet
Subject: [gnurl] 82/282: curl: avoid using strlen for testing if a string is empty
Date: Wed, 01 Apr 2020 14:29:07 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 2bc373740a341d1454592b53da8d097aec7ba0fd
Author: Orgad Shaneh <address@hidden>
AuthorDate: Mon Feb 3 11:42:46 2020 +0200

    curl: avoid using strlen for testing if a string is empty
    
    Closes #4873
---
 src/tool_getparam.c | 2 +-
 src/tool_operhlp.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tool_getparam.c b/src/tool_getparam.c
index b757ac8f0..1a72edf3e 100644
--- a/src/tool_getparam.c
+++ b/src/tool_getparam.c
@@ -422,7 +422,7 @@ void parse_cert_parameter(const char *cert_parameter,
       /* escaped colons and Windows drive letter colons were handled
        * above; if we're still here, this is a separating colon */
       param_place++;
-      if(strlen(param_place) > 0) {
+      if(*param_place) {
         *passphrase = strdup(param_place);
       }
       goto done;
diff --git a/src/tool_operhlp.c b/src/tool_operhlp.c
index 8a9b7c9e8..7b9ff7d2a 100644
--- a/src/tool_operhlp.c
+++ b/src/tool_operhlp.c
@@ -85,7 +85,7 @@ char *add_file_name_to_url(char *url, const char *filename)
   else
     ptr = url;
   ptr = strrchr(ptr, '/');
-  if(!ptr || !strlen(++ptr)) {
+  if(!ptr || !*++ptr) {
     /* The URL has no file name part, add the local file name. In order
        to be able to do so, we have to create a new URL in another
        buffer.*/

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



reply via email to

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