Initialize m_Bar, m_dropTarget, & m_hWnd members of GHOST_WindowWin32
in constructor's member initializer list. This ensures they are are
set or NULL in destructor if constructor does not complete.
m_Bar is used to show status on the Windows taskbar icon. In the destructor this is checked against NULL before setting and releasing it. But this is only assigned very late in the constructor. So if constructor doesn't complete this member contains random values and the destructor dies badly. We don't currently see this error because the only time (in practice) the constructor doesn't complete we call exit, but I want to add some cases where we tolerate window creation failing and continuing to work otherwise. This patch simply initializes m_bar to NULL to allow that.
The above also applies to m_dropTarget & m_hWnd, also initialized in this patch.