#6037 Unitialized and unused members in IPCLogOutputter

This commit is contained in:
Andrew Nelless 2017-05-12 19:38:03 +01:00
parent 3e6b6dc7b8
commit b097171c69
2 changed files with 1 additions and 1 deletions

View File

@ -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),

View File

@ -114,7 +114,6 @@ private:
double m_bufferRateTimeLimit;
UInt16 m_bufferWriteCount;
double m_bufferRateStart;
bool m_useThread;
EIpcClientType m_clientType;
ArchMutex m_runningMutex;
};