From: Guilhem Lavaux Date: Sun, 21 Nov 1999 18:16:40 +0000 (+0000) Subject: Fixed an incorrect behaviour in ResetBuffer() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1cb6da2ddaf1aecb97fc805d8a0de772353e10df Fixed an incorrect behaviour in ResetBuffer() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/stream.cpp b/src/common/stream.cpp index ed5190b1dc..81339e6bfb 100644 --- a/src/common/stream.cpp +++ b/src/common/stream.cpp @@ -114,7 +114,7 @@ void wxStreamBuffer::ResetBuffer() { m_stream->m_lasterror = wxStream_NOERROR; m_stream->m_lastcount = 0; - if (m_mode == read) + if (m_mode == read && m_flushable) m_buffer_pos = m_buffer_end; else m_buffer_pos = m_buffer_start;