From b097171c69d9105f211f92da31052100157332d8 Mon Sep 17 00:00:00 2001 From: Andrew Nelless Date: Fri, 12 May 2017 19:38:03 +0100 Subject: [PATCH] #6037 Unitialized and unused members in IPCLogOutputter --- src/lib/ipc/IpcLogOutputter.cpp | 1 + src/lib/ipc/IpcLogOutputter.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ipc/IpcLogOutputter.cpp b/src/lib/ipc/IpcLogOutputter.cpp index f215750a..120fd66f 100644 --- a/src/lib/ipc/IpcLogOutputter.cpp +++ b/src/lib/ipc/IpcLogOutputter.cpp @@ -45,6 +45,7 @@ IpcLogOutputter::IpcLogOutputter(IpcServer& ipcServer, EIpcClientType clientType m_running(false), m_notifyCond(ARCH->newCondVar()), m_notifyMutex(ARCH->newMutex()), + m_bufferThreadId(0), m_bufferWaiting(false), m_bufferMaxSize(kBufferMaxSize), m_bufferRateWriteLimit(kBufferRateWriteLimit), diff --git a/src/lib/ipc/IpcLogOutputter.h b/src/lib/ipc/IpcLogOutputter.h index dd2bada6..b6b285b8 100644 --- a/src/lib/ipc/IpcLogOutputter.h +++ b/src/lib/ipc/IpcLogOutputter.h @@ -114,7 +114,6 @@ private: double m_bufferRateTimeLimit; UInt16 m_bufferWriteCount; double m_bufferRateStart; - bool m_useThread; EIpcClientType m_clientType; ArchMutex m_runningMutex; };