]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't hang in ReadLine when there's no input left
authorJulian Smart <julian@anthemion.co.uk>
Sat, 18 Aug 2007 12:25:23 +0000 (12:25 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 18 Aug 2007 12:25:23 +0000 (12:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48162 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/txtstrm.cpp

index 43deb545d3d419d5daf69951d3c58b8b145e9194..010fe739f644263c97a91860e9882bd59c6e2c86 100644 (file)
@@ -77,6 +77,9 @@ wxChar wxTextInputStream::NextChar()
     memset((void*)m_lastBytes, 0, 10);
     for(size_t inlen = 0; inlen < 9; inlen++)
     {
     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();
 
         // actually read the next character
         m_lastBytes[inlen] = m_input.GetC();
 
@@ -90,6 +93,9 @@ wxChar wxTextInputStream::NextChar()
     // there should be no encoding which requires more than nine bytes for one character...
     return wxEOT;
 #else
     // 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)
     m_lastBytes[0] = m_input.GetC();
 
     if(m_input.LastRead() <= 0)