commit 39c8075ca0906bcce7b106274c996b5268928e47 parent 63a17745f067660cabed69104e3462e9eb962a74 Author: Christian Grothoff <grothoff@gnunet.org> Date: Sat, 23 Aug 2025 22:51:53 +0200 fix NULL-check Diffstat:
| M | src/backend/taler-merchant-httpd_helper.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/backend/taler-merchant-httpd_helper.c b/src/backend/taler-merchant-httpd_helper.c @@ -637,7 +637,7 @@ TMH_check_auth_config (struct MHD_Connection *connection, else { *auth_password = json_string_value (pw_value); - if (NULL != auth_password) + if (NULL != *auth_password) { if (0 == strncasecmp (RFC_8959_PREFIX, *auth_password,