Closed jongiddy closed 1 year ago
Anyone trying to fix this issue probably needs to look at the discussion here: https://github.com/rust-lang/flate2-rs/pull/278/files#r676719137
https://github.com/rust-lang/flate2-rs/issues/265 is possibly linked - missing filename in header and problems decompressing.
The
read_gz_header_part
function returns anErr
if the first 10 bytes of the gzip header are not present or if the FEXTRA flag is set and the extra fields are not present. Returning anErr
causesGzDecoder::write
to keep the buffer and wait for more data to complete the header.However, if the header contains an optional filename or comment but they are not completely contained in the buffer, then a valid header is created, missing data from the optional sections. The next
write
call will treat the remaining header as encoded data and attempt to unzip it.The problem occurs because
for byte in r.bytes()
ends the iteration when the end of the buffer is found, falling through to the next state.If this happens, the code should return
Err(io::ErrorKind::UnexpectedEof)
to allow a subsequentwrite
to complete the header.