From: Václav Slavík Date: Sat, 29 Jan 2000 01:13:12 +0000 (+0000) Subject: fixed memory leak (m_PagesHash not deleted) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/70aedad68fe4fc59134c55055b35f35a5ce3fd7a fixed memory leak (m_PagesHash not deleted) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/helpfrm.cpp b/src/html/helpfrm.cpp index f9efaaa048..0df2ab25b7 100644 --- a/src/html/helpfrm.cpp +++ b/src/html/helpfrm.cpp @@ -462,6 +462,7 @@ wxHtmlHelpFrame::~wxHtmlHelpFrame() delete m_Data; if (m_NormalFonts) delete m_NormalFonts; if (m_FixedFonts) delete m_FixedFonts; + if (m_PagesHash) delete m_PagesHash; }