]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed memory leak in wxURL when using a proxy
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Jun 2004 22:36:44 +0000 (22:36 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 19 Jun 2004 22:36:44 +0000 (22:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27905 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
src/common/url.cpp

index 20e248007228b285444c6e2cef1eb3b170e90ff2..cb0f3d76279a9d32482e8c93260edf8695c52fa2 100644 (file)
@@ -105,6 +105,7 @@ OTHER CHANGES
 All:
 
 - number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten)
+- fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem)
 
 All (GUI):
 
index 6c0da6ee2921fbbee52720e73a2ff240b7b36b68..12728a9b0e4d0ae1456219fd854b5cdd6147e386 100644 (file)
@@ -131,8 +131,8 @@ bool wxURL::ParseURL()
 #if wxUSE_SOCKETS
   if (m_useProxy)
   {
-    // We destroy the newly created protocol.
-    CleanData();
+    // destroy the previously created protocol as we'll be using m_proxy
+    delete m_protocol;
 
     // Third, we rebuild the URL.
     m_url = m_protoname + wxT(":");