From: Vadim Zeitlin Date: Sun, 6 Jan 2008 19:00:09 +0000 (+0000) Subject: fix crash in wxExecuteModule::OnExit() (never noticed before because it wasn't execut... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9978ac8e4f52e47a07c146cfa17ba69bf2cc0338 fix crash in wxExecuteModule::OnExit() (never noticed before because it wasn't executed until the last commit) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/utilsexc.cpp b/src/msw/utilsexc.cpp index 2194678500..a675969f7e 100644 --- a/src/msw/utilsexc.cpp +++ b/src/msw/utilsexc.cpp @@ -176,7 +176,7 @@ public: } } - if ( *gs_classForHiddenWindow ) + if ( gs_classForHiddenWindow ) { if ( !::UnregisterClass(wxMSWEXEC_WNDCLASSNAME, wxGetInstance()) ) {