From c31bcf315976d4623634afb3dae5669dc95c85dc Mon Sep 17 00:00:00 2001 From: Paul Adenot Date: Tue, 25 Jul 2023 14:40:41 +0200 Subject: [PATCH] Fix clang-tidy warnings in cubeb_log.cpp --- src/cubeb_log.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cubeb_log.cpp b/src/cubeb_log.cpp index 7b71150..73b568f 100644 --- a/src/cubeb_log.cpp +++ b/src/cubeb_log.cpp @@ -54,7 +54,7 @@ public: char const * get() { return storage; } private: - char storage[CUBEB_LOG_MESSAGE_MAX_SIZE]; + char storage[CUBEB_LOG_MESSAGE_MAX_SIZE]{}; }; /** Lock-free asynchronous logger, made so that logging from a @@ -70,7 +70,7 @@ public: void push(char const str[CUBEB_LOG_MESSAGE_MAX_SIZE]) { cubeb_log_message msg(str); - auto owned_queue = msg_queue.load(); + auto * owned_queue = msg_queue.load(); // Check if the queue is being deallocated. If not, grab ownership. If yes, // return, the message won't be logged. if (!owned_queue || @@ -123,7 +123,7 @@ public: if (logging_thread.get_id() != std::thread::id()) { logging_thread.join(); logging_thread = std::thread(); - auto owned_queue = msg_queue.load(); + auto * owned_queue = msg_queue.load(); // Check if the queue is being used. If not, grab ownership. If yes, // try again shortly. At this point, the logging thread has been joined, // so nothing is going to dequeue.