X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/4860d40db4a78d8c2fd20d0b7b75136d749050eb..b9efe021b554fa3967d1442cf758435c5cd5ae8f:/src/common/url.cpp?ds=sidebyside diff --git a/src/common/url.cpp b/src/common/url.cpp index a78708b6ee..dfd818b176 100644 --- a/src/common/url.cpp +++ b/src/common/url.cpp @@ -162,9 +162,6 @@ bool wxURL::ParseURL() #if wxUSE_PROTOCOL_HTTP if (m_useProxy) { - // destroy the previously created protocol as we'll be using m_proxy - delete m_protocol; - // Third, we rebuild the URL. m_url = m_scheme + wxT(":"); if (m_protoinfo->m_needhost) @@ -426,7 +423,7 @@ bool wxURLModule::OnInit() // down the program startup (especially if there is no DNS server // available, in which case it may take up to 1 minute) - if ( getenv("HTTP_PROXY") ) + if ( wxGetenv(_T("HTTP_PROXY")) ) { wxURL::ms_useDefaultProxy = true; }