From 00078fb3096d8a117f4c4322f1804bb7d95bcbc4 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 3 May 2023 21:54:29 +0200 Subject: [PATCH] execute: add missing NULL handling --- src/core/execute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/execute.c b/src/core/execute.c index 6595931809e..5e327465da7 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -2787,7 +2787,7 @@ static char **credential_search_path( if (DEBUG_LOGGING) { _cleanup_free_ char *t = strv_join(l, ":"); - log_debug("Credential search path is: %s", t); + log_debug("Credential search path is: %s", strempty(t)); } return TAKE_PTR(l); -- 2.47.3