set richedit DLL handle to 0 after unloading (patch 768994)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22061 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-07-17 21:54:14 +00:00
parent bb131fdbc5
commit 8c74e477ed

View File

@@ -2234,6 +2234,7 @@ void wxRichEditModule::OnExit()
if ( ms_hRichEdit[i] ) if ( ms_hRichEdit[i] )
{ {
::FreeLibrary(ms_hRichEdit[i]); ::FreeLibrary(ms_hRichEdit[i]);
ms_hRichEdit[i] = NULL;
} }
} }
} }