Log: fixed unsafe read

This commit is contained in:
SChernykh 2025-03-20 11:45:47 +01:00
parent abde2ef1ce
commit a66716c0b1

View file

@ -369,7 +369,7 @@ private:
std::vector<char> m_buf;
std::atomic<uint32_t> m_writePos;
uint32_t m_readPos;
std::atomic<uint32_t> m_readPos;
uv_cond_t m_cond;
uv_mutex_t m_mutex;