fix: Panic when reading a file truncated in the middle of an XZ block header
This commit is contained in:
parent
1e7085fd10
commit
86568263c6
1 changed files with 4 additions and 1 deletions
|
@ -224,7 +224,10 @@ impl<R: Read> Read for XzDecoder<R> {
|
|||
}
|
||||
digest.update(&b);
|
||||
}
|
||||
let mut b = vec![0u8; header_end - *reader.count];
|
||||
let Some(padding_bytes) = header_end.checked_sub(*reader.count) else {
|
||||
return error("Invalid XZ block header (too short)");
|
||||
};
|
||||
let mut b = vec![0u8; padding_bytes];
|
||||
reader.read_exact(b.as_mut_slice())?;
|
||||
if !b.iter().all(|&b| b == 0) {
|
||||
return error("Invalid XZ block header padding");
|
||||
|
|
Loading…
Add table
Reference in a new issue