]> git.saurik.com Git - wxWidgets.git/commitdiff
don't crash in case of incorrectly specified parent type of MDI child frame (coverity...
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 8 Mar 2006 00:03:15 +0000 (00:03 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 8 Mar 2006 00:03:15 +0000 (00:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37890 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/xrc/xh_mdi.cpp

index 5838d7c28814ea79d3928a2d7756daf09e4c1659..507f49d806fe43ae1dcd680476ee12e534f5ee44 100644 (file)
@@ -78,7 +78,10 @@ wxWindow *wxMdiXmlHandler::CreateFrame()
         wxMDIParentFrame *mdiParent = wxDynamicCast(m_parent, wxMDIParentFrame);
 
         if ( !mdiParent )
         wxMDIParentFrame *mdiParent = wxDynamicCast(m_parent, wxMDIParentFrame);
 
         if ( !mdiParent )
-            wxLogError(wxT("Parent is not of type wxMDIParentFrame."));
+        {
+            wxLogError(wxT("Parent of wxMDIParentFrame must be wxMDIParentFrame."));
+            return NULL;
+        }
 
         XRC_MAKE_INSTANCE(frame, wxMDIChildFrame);
 
 
         XRC_MAKE_INSTANCE(frame, wxMDIChildFrame);