fixed couple of bugs in wxZlibInputStream -- mainly incorrect handling of underlaying stream errors and absolutely wrong bytes counting
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6443 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -89,15 +89,19 @@ size_t wxZlibInputStream::OnSysRead(void *buffer, size_t size)
|
|||||||
m_inflate->next_in = m_z_buffer;
|
m_inflate->next_in = m_z_buffer;
|
||||||
m_inflate->avail_in = m_parent_i_stream->LastRead();
|
m_inflate->avail_in = m_parent_i_stream->LastRead();
|
||||||
|
|
||||||
if (m_parent_i_stream->LastError() != wxStream_NOERROR)
|
if (m_parent_i_stream->LastError() != wxStream_NOERROR &&
|
||||||
return (size - m_inflate->avail_in);
|
m_parent_i_stream->LastError() != wxStream_EOF)
|
||||||
|
{
|
||||||
|
m_lasterror = m_parent_i_stream->LastError();
|
||||||
|
return 0; // failed to read anything
|
||||||
|
}
|
||||||
}
|
}
|
||||||
err = inflate(m_inflate, Z_FINISH);
|
err = inflate(m_inflate, Z_FINISH);
|
||||||
if (err == Z_STREAM_END)
|
if (err == Z_STREAM_END)
|
||||||
return (size - m_inflate->avail_in);
|
return (size - m_inflate->avail_out);
|
||||||
}
|
}
|
||||||
|
|
||||||
return size-m_inflate->avail_in;
|
return size-m_inflate->avail_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
//////////////////////
|
//////////////////////
|
||||||
|
Reference in New Issue
Block a user