fixed memory leaks
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5813 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -138,6 +138,11 @@ public:
|
||||
{
|
||||
m_next = NULL;
|
||||
}
|
||||
|
||||
~MailCapEntry()
|
||||
{
|
||||
if (m_next) delete m_next;
|
||||
}
|
||||
|
||||
// accessors
|
||||
const wxString& GetOpenCmd() const { return m_openCmd; }
|
||||
@@ -1041,6 +1046,14 @@ wxMimeTypesManagerImpl::wxMimeTypesManagerImpl()
|
||||
handlers[hn]->GetMimeInfoRecords(this);
|
||||
}
|
||||
|
||||
|
||||
wxMimeTypesManagerImpl::~wxMimeTypesManagerImpl()
|
||||
{
|
||||
size_t cnt = m_aEntries.GetCount();
|
||||
for (size_t i = 0; i < cnt; i++) delete m_aEntries[i];
|
||||
}
|
||||
|
||||
|
||||
wxFileType *
|
||||
wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString& ext)
|
||||
{
|
||||
|
Reference in New Issue
Block a user