plugged memory leak

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5934 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2000-02-09 20:35:09 +00:00
parent b99be8fb78
commit d14f4fec2d

View File

@ -59,6 +59,11 @@ wxHTTP::~wxHTTP()
delete string;
node = node->Next();
}
if (m_addr) {
delete m_addr;
m_addr = NULL;
}
}
wxString wxHTTP::GetContentType()