]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tool_getparam: simplify conditional statement
authorDaniel Gustafsson <daniel@yesql.se>
Mon, 2 May 2022 12:04:59 +0000 (14:04 +0200)
committerDaniel Gustafsson <daniel@yesql.se>
Mon, 2 May 2022 12:04:59 +0000 (14:04 +0200)
param_place cannot be NULL here since we immediately efter this block
perform arithmetic on it (and use it in order to get here) so there is
little reason to check.

Closes: #8786
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
src/tool_getparam.c

index 67de74dff7cbf8d0051d78d480a1681de4212b0b..cff1839b03e4c8e53157023057daaee18b6a9fda 100644 (file)
@@ -420,10 +420,9 @@ void parse_cert_parameter(const char *cert_parameter,
          separator, but we try to detect when it is used for a file name! On
          windows. */
 #ifdef WIN32
-      if(param_place &&
-          (param_place == &cert_parameter[1]) &&
-          (cert_parameter[2] == '\\' || cert_parameter[2] == '/') &&
-          (ISALPHA(cert_parameter[0])) ) {
+      if((param_place == &cert_parameter[1]) &&
+         (cert_parameter[2] == '\\' || cert_parameter[2] == '/') &&
+         (ISALPHA(cert_parameter[0])) ) {
         /* colon in the second column, followed by a backslash, and the
            first character is an alphabetic letter: