From 5c649b815cefa18b27d00f45dcd3f57d9958f492 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 17 Sep 2002 01:44:24 +0000 Subject: [PATCH] Fix for wxPyInputStream, m_lastRead was getting incremented twice. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17222 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/helpers.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/wxPython/src/helpers.cpp b/wxPython/src/helpers.cpp index e317a426be..a88ea2ae68 100644 --- a/wxPython/src/helpers.cpp +++ b/wxPython/src/helpers.cpp @@ -889,7 +889,6 @@ size_t wxPyCBInputStream::OnSysRead(void *buffer, size_t bufsize) { else m_lasterror = wxSTREAM_READ_ERROR; wxPyEndBlockThreads(); - m_lastcount = o; return o; }