From a49932b757600a09497650e29fda102579c6e78e Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Sun, 1 Jun 2003 12:58:30 +0000 Subject: [PATCH] Applied patch [ 745983 ] Fix for memory leak in class wxPluginManager in dynload.cpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dynload.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/dynload.cpp b/src/common/dynload.cpp index 51c0a13359..3c7e8c5e8d 100644 --- a/src/common/dynload.cpp +++ b/src/common/dynload.cpp @@ -665,7 +665,7 @@ void wxPluginManager::Unload() if ( i->second == m_entry ) { ms_manifest->erase(i); - return; + break; } }