]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/url.cpp
fixing pattern phase bugs
[wxWidgets.git] / src / common / url.cpp
index 084a93ca85d4509caa63e134684c54bc6384a974..700cb18d7e59202335109af9dadf37250b61099f 100644 (file)
 #ifndef WX_PRECOMP
     #include "wx/list.h"
     #include "wx/string.h"
+    #include "wx/utils.h"
+    #include "wx/module.h"
 #endif
 
-#include "wx/utils.h"
-#include "wx/module.h"
-
 #include <string.h>
 #include <ctype.h>
 
@@ -185,7 +184,9 @@ void wxURL::CleanData()
 #if wxUSE_PROTOCOL_HTTP
     if (!m_useProxy)
 #endif // wxUSE_PROTOCOL_HTTP
-        delete m_protocol;
+        if (m_protocol)
+            // Need to safely delete the socket (pending events)
+            m_protocol->Destroy();
 }
 
 wxURL::~wxURL()