#6037 Unitialized handles and other members in ArchTaskBarWindows
This commit is contained in:
parent
485540bbb4
commit
0290583ab9
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue