From 70aedad68fe4fc59134c55055b35f35a5ce3fd7a Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 29 Jan 2000 01:13:12 +0000 Subject: [PATCH] fixed memory leak (m_PagesHash not deleted) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5728 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/helpfrm.cpp | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.45.2