git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31242
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
char wxMemoryInputStream::Peek()
{
char *buf = (char *)m_i_streambuf->GetBufferStart();
char wxMemoryInputStream::Peek()
{
char *buf = (char *)m_i_streambuf->GetBufferStart();
+ size_t pos = m_i_streambuf->GetIntPosition();
+ if ( pos == m_length )
+ {
+ m_lasterror = wxSTREAM_READ_ERROR;
+
+ return 0;
+ }
- return buf[m_i_streambuf->GetIntPosition()];
}
bool wxMemoryInputStream::Eof() const
}
bool wxMemoryInputStream::Eof() const