From: Stefan Csomor Date: Sat, 21 Mar 2009 14:24:13 +0000 (+0000) Subject: make it crash-proof X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d4e4ba484ddff22da8dc4ff767b42faf84b0fac1 make it crash-proof git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59696 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/osx/window_osx.cpp b/src/osx/window_osx.cpp index 6c3433c723..bb4f4d691c 100644 --- a/src/osx/window_osx.cpp +++ b/src/osx/window_osx.cpp @@ -195,7 +195,9 @@ wxWindowMac::~wxWindowMac() WXWidget wxWindowMac::GetHandle() const { - return (WXWidget) m_peer->GetWXWidget() ; + if ( m_peer ) + return (WXWidget) m_peer->GetWXWidget() ; + return NULL; } //