From 79c3a830889ef4c876afbfb2b1e8502e1d98d339 Mon Sep 17 00:00:00 2001 From: JCW Date: Thu, 4 Sep 2025 17:13:09 +0100 Subject: [PATCH] Fix build error Signed-off-by: JCW --- include/xrpl/basics/Log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xrpl/basics/Log.h b/include/xrpl/basics/Log.h index 2bf6e6a76d..c2a66efb79 100644 --- a/include/xrpl/basics/Log.h +++ b/include/xrpl/basics/Log.h @@ -154,7 +154,7 @@ private: // Batching members mutable std::mutex batchMutex_; static constexpr size_t BATCH_BUFFER_SIZE = 64 * 1024; // 64KB buffer - std::array batchBuffer_; + std::array batchBuffer_{}; std::span writeBuffer_; // Points to available write space std::span readBuffer_; // Points to data ready to flush std::chrono::steady_clock::time_point lastFlush_ =