From 3f958d37246f2143ec6ded2f9b9da4270176d68f Mon Sep 17 00:00:00 2001 From: Andrey Volk Date: Tue, 19 Oct 2021 03:03:55 +0300 Subject: [PATCH] [mod_verto] scan-build: fix false-positive Argument with 'nonnull' attribute passed null in check_auth --- src/mod/endpoints/mod_verto/mod_verto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index dba9d63208..06cb6c7652 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -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; *code = CODE_AUTH_FAILED; switch_snprintf(message, mlen, "Authentication Failure");