diff --git a/src/common/txtstrm.cpp b/src/common/txtstrm.cpp index cc3c7fd77f..d2e08f5c8f 100644 --- a/src/common/txtstrm.cpp +++ b/src/common/txtstrm.cpp @@ -73,9 +73,6 @@ wxChar wxTextInputStream::NextChar() memset((void*)m_lastBytes, 0, 10); for(size_t inlen = 0; inlen < 9; inlen++) { - if (!m_input.CanRead()) - return wxEOT; - // actually read the next character m_lastBytes[inlen] = m_input.GetC(); @@ -89,9 +86,6 @@ wxChar wxTextInputStream::NextChar() // there should be no encoding which requires more than nine bytes for one character... return wxEOT; #else - if (!m_input.CanRead()) - return wxEOT; - m_lastBytes[0] = m_input.GetC(); if(m_input.LastRead() <= 0)