From d90d99bd38be330c9800d40d4054b4135c4e9eb4 Mon Sep 17 00:00:00 2001 From: Tanu Kaskinen Date: Thu, 11 Jul 2013 14:14:29 +0300 Subject: [PATCH] log: Fix thread name printing Not all threads have a name. Thanks to Pierre Ossman for the patch. --- src/pulsecore/log.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pulsecore/log.c b/src/pulsecore/log.c index 61873fa4..e4f1c300 100644 --- a/src/pulsecore/log.c +++ b/src/pulsecore/log.c @@ -363,9 +363,11 @@ void pa_log_levelv_meta( pa_vsnprintf(text, sizeof(text), format, ap); if ((_flags & PA_LOG_PRINT_META) && file && line > 0 && func) - pa_snprintf(location, sizeof(location), "[%s][%s:%i %s()] ", pa_thread_get_name(pa_thread_self()), file, line, func); + pa_snprintf(location, sizeof(location), "[%s][%s:%i %s()] ", + pa_strnull(pa_thread_get_name(pa_thread_self())), file, line, func); else if ((_flags & (PA_LOG_PRINT_META|PA_LOG_PRINT_FILE)) && file) - pa_snprintf(location, sizeof(location), "[%s] %s: ", pa_thread_get_name(pa_thread_self()), pa_path_get_filename(file)); + pa_snprintf(location, sizeof(location), "[%s] %s: ", + pa_strnull(pa_thread_get_name(pa_thread_self())), pa_path_get_filename(file)); else location[0] = 0; -- 2.39.2