]> git.saurik.com Git - wxWidgets.git/commitdiff
* Bug fix in wxFilter*Stream
authorGuilhem Lavaux <lavaux@easynet.fr>
Thu, 10 Sep 1998 17:22:20 +0000 (17:22 +0000)
committerGuilhem Lavaux <lavaux@easynet.fr>
Thu, 10 Sep 1998 17:22:20 +0000 (17:22 +0000)
* corrected the URL parser

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@726 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/stream.cpp
src/common/url.cpp

index b749b6029f338281830b2ea02579bc4dea839aaf..82bbb35e15748f784cd3c9ef8c5b1cc8d85deeae 100644 (file)
@@ -574,6 +574,8 @@ wxFilterInputStream::wxFilterInputStream(wxInputStream& stream)
   : wxInputStream(NULL)
 {
   m_parent_i_stream = &stream;
+  wxDELETE(m_i_streambuf); // In case m_i_streambuf has been initialized.
+  m_i_destroybuf = FALSE;
   m_i_streambuf = stream.InputStreamBuffer();
 }
 
@@ -608,6 +610,8 @@ wxFilterOutputStream::wxFilterOutputStream(wxOutputStream& stream)
   : wxOutputStream(NULL)
 {
   m_parent_o_stream = &stream;
+  wxDELETE(m_o_streambuf); // In case m_o_streambuf has been initialized.
+  m_o_destroybuf = FALSE;
   m_o_streambuf = stream.OutputStreamBuffer();
 }
 
index 180511941c955e6e0925c209fc0725939e1351e8..b9a8993e3f5e0fb35b86a4c2df0d43b0918da933 100644 (file)
@@ -147,7 +147,7 @@ bool wxURL::PrepHost(wxString& url)
 
   pos = url.Find('/');
   if (pos == -1)
-    return FALSE;
+    pos = url.Length();
 
   pos2 = url.Find(':');
   if (pos2 != -1 && pos2 < pos) {