From cf2490910811cb06ff5ef9cc86236066647709e2 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Wed, 30 Oct 2002 18:01:24 +0000 Subject: [PATCH] Compile fix after latest cleanup. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17659 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/datstrm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/datstrm.cpp b/src/common/datstrm.cpp index 3167464b51..88cdcd4049 100644 --- a/src/common/datstrm.cpp +++ b/src/common/datstrm.cpp @@ -117,7 +117,7 @@ wxString wxDataInputStream::ReadString() delete[] tmp; #else wxString ret; - m_input->Read(s.GetWriteBuf(len), len); + m_input->Read( ret.GetWriteBuf(len), len); ret.UngetWriteBuf(); #endif return ret;