tool_getparam: simplify conditional statement
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>
This commit is contained in:
parent
db300e015d
commit
79bf349a50
@ -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:
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user