+ if (err == Z_STREAM_END) {
+ // Unread any data taken from past the end of the deflate stream, so that
+ // any additional data can be read from the underlying stream (the crc
+ // in a gzip for example)
+ if (m_inflate->avail_in) {
+ m_parent_i_stream->Ungetch(m_inflate->next_in, m_inflate->avail_in);
+ m_inflate->avail_in = 0;
+ }
+ m_lasterror = wxSTREAM_EOF;
+ } else if (err != Z_OK) {
+ wxLogError(_("Can't read from inflate stream (zlib error %d)."), err);
+ m_lasterror = wxSTREAM_READ_ERROR;
+ }
+
+ size -= m_inflate->avail_out;
+ m_pos += size;
+ return size;