From: Julian Smart Date: Sun, 8 Feb 2004 11:49:22 +0000 (+0000) Subject: Applied patch [ 892511 ] wxUniversal: fix of segfault in toolbar.cpp X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/23219626728fa01d7df41dc616313037a85805fe Applied patch [ 892511 ] wxUniversal: fix of segfault in toolbar.cpp Christian Sturmlechner git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25610 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/univ/toolbar.cpp b/src/univ/toolbar.cpp index c0eea0ba8b..74ff8b55e0 100644 --- a/src/univ/toolbar.cpp +++ b/src/univ/toolbar.cpp @@ -645,6 +645,8 @@ bool wxToolBar::PerformAction(const wxControlAction& action, const wxString& strArg) { wxToolBarTool *tool = (wxToolBarTool*) FindById(numArg); + if (!tool) + return false; if ( action == wxACTION_TOOLBAR_TOGGLE ) {