fixed LastRead() after Read(wxOutputStream&) (patch 1658301)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44484 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -869,6 +869,7 @@ char wxInputStream::Peek()
|
|||||||
|
|
||||||
wxInputStream& wxInputStream::Read(wxOutputStream& stream_out)
|
wxInputStream& wxInputStream::Read(wxOutputStream& stream_out)
|
||||||
{
|
{
|
||||||
|
size_t lastcount = 0;
|
||||||
char buf[BUF_TEMP_SIZE];
|
char buf[BUF_TEMP_SIZE];
|
||||||
|
|
||||||
for ( ;; )
|
for ( ;; )
|
||||||
@@ -879,8 +880,12 @@ wxInputStream& wxInputStream::Read(wxOutputStream& stream_out)
|
|||||||
|
|
||||||
if ( stream_out.Write(buf, bytes_read).LastWrite() != bytes_read )
|
if ( stream_out.Write(buf, bytes_read).LastWrite() != bytes_read )
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
lastcount += bytes_read;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
m_lastcount = lastcount;
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user