]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/http.cpp
fix for using wxDataObjectComposite with the clipboard
[wxWidgets.git] / src / common / http.cpp
index 4bcfd768704fc7616f11407c44eec2e315960f6c..8471c3392646dbc820b88446f72a75b0ddf436ae 100644 (file)
@@ -185,11 +185,11 @@ bool wxHTTP::Connect(wxSockAddress& addr, bool WXUNUSED(wait))
 {
   if (m_addr) {
     delete m_addr;
-    m_addr = NULL;
     Close();
   }
 
-  m_addr = (wxSockAddress *) addr.Clone();
+  m_addr = addr.Clone();
+
   return TRUE;
 }