Merge pull request #1390 from signalwire/check_auth
[mod_verto] scan-build: fix false-positive Argument with 'nonnull' attribute passed null in check_auth
This commit is contained in:
commit
a6f26ee83f
|
@ -1050,7 +1050,7 @@ static switch_bool_t check_auth(jsock_t *jsock, cJSON *params, int *code, char *
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (zstr(use_passwd) || strcmp(a1_hash ? a1_hash : passwd, use_passwd)) {
|
if (!use_passwd || zstr(use_passwd) || strcmp(a1_hash ? a1_hash : passwd, use_passwd)) {
|
||||||
r = SWITCH_FALSE;
|
r = SWITCH_FALSE;
|
||||||
*code = CODE_AUTH_FAILED;
|
*code = CODE_AUTH_FAILED;
|
||||||
switch_snprintf(message, mlen, "Authentication Failure");
|
switch_snprintf(message, mlen, "Authentication Failure");
|
||||||
|
|
Loading…
Reference in New Issue