From: Lennart Poettering Date: Wed, 3 May 2023 19:54:29 +0000 (+0200) Subject: execute: add missing NULL handling X-Git-Tag: v254-rc1~385^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=00078fb3096d8a117f4c4322f1804bb7d95bcbc4;p=thirdparty%2Fsystemd.git execute: add missing NULL handling --- 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);