diff options
author | Paul Adenot <[email protected]> | 2023-07-25 14:40:41 +0200 |
---|---|---|
committer | Paul Adenot <[email protected]> | 2023-07-26 14:02:22 +0200 |
commit | c31bcf315976d4623634afb3dae5669dc95c85dc (patch) | |
tree | 90d356f03d1f9cd558d40d95b965bf53c9f66e21 /src/cubeb_log.cpp | |
parent | dfc128b0536d947990bae2d3ea38fc0fa0827796 (diff) | |
download | cubeb-c31bcf315976d4623634afb3dae5669dc95c85dc.tar.gz cubeb-c31bcf315976d4623634afb3dae5669dc95c85dc.zip |
Fix clang-tidy warnings in cubeb_log.cpp
Diffstat (limited to 'src/cubeb_log.cpp')
-rw-r--r-- | src/cubeb_log.cpp | 6 |
1 files 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. |