#6037 Unitialized handles and other members in ArchTaskBarWindows

This commit is contained in:
Andrew Nelless 2017-05-12 00:20:59 +01:00
parent 485540bbb4
commit 0290583ab9
1 changed files with 7 additions and 3 deletions

View File

@ -39,10 +39,14 @@ static const UINT kFirstReceiverID = WM_USER + 14;
ArchTaskBarWindows* ArchTaskBarWindows::s_instance = NULL;
ArchTaskBarWindows::ArchTaskBarWindows() :
m_nextID(kFirstReceiverID),
m_thread(NULL),
m_mutex(NULL),
m_condVar(NULL),
m_mutex(NULL)
m_ready(false),
m_result(0),
m_thread(NULL),
m_hwnd(NULL),
m_taskBarRestart(0),
m_nextID(kFirstReceiverID)
{
// save the singleton instance
s_instance = this;