X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8ecff18117f8cabc0f515ad81aa4ad265e5e17d3..d9b72d25405c4229b6195b581e6723f95d77e31d:/src/common/url.cpp diff --git a/src/common/url.cpp b/src/common/url.cpp index 65f2fe7265..14ebd7b851 100644 --- a/src/common/url.cpp +++ b/src/common/url.cpp @@ -18,14 +18,15 @@ #if wxUSE_URL +#include "wx/url.h" + #ifndef WX_PRECOMP #include "wx/list.h" + #include "wx/string.h" + #include "wx/utils.h" #endif -#include "wx/string.h" -#include "wx/utils.h" #include "wx/module.h" -#include "wx/url.h" #include #include @@ -184,7 +185,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()