]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/stream.cpp
old makefiles removed
[wxWidgets.git] / src / common / stream.cpp
index 1c34deffff0687d552063a9e1d6141689ebb3aec..d5954d71d8c2340fd3383968df78354c960b6793 100644 (file)
@@ -340,7 +340,7 @@ size_t wxStreamBuffer::Read(wxStreamBuffer *s_buf)
   if (m_mode == write)
     return 0;
 
-  while (bytes_read == BUF_TEMP_SIZE) {
+  while (bytes_read != 0) {
     bytes_read = Read(buf, bytes_read);
     bytes_read = s_buf->Write(buf, bytes_read);
     s += bytes_read;