chore: Fix a fuzz failure by using checked_sub

This commit is contained in:
Chris Hennick 2024-06-02 21:16:55 -07:00
parent fb781e0517
commit 9218599b40
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -32,8 +32,10 @@ impl UnicodeExtraField {
reader.read_exact(&mut [0u8])?; reader.read_exact(&mut [0u8])?;
let crc32 = reader.read_u32_le()?; let crc32 = reader.read_u32_le()?;
let mut content = let content_len = (len as usize)
vec![0u8; len as usize - size_of::<u8>() - size_of::<u32>()].into_boxed_slice(); .checked_sub(size_of::<u8>() + size_of::<u32>())
.ok_or(ZipError::InvalidArchive("Unicode extra field is too small"))?;
let mut content = vec![0u8; content_len].into_boxed_slice();
reader.read_exact(&mut content)?; reader.read_exact(&mut content)?;
Ok(Self { crc32, content }) Ok(Self { crc32, content })
} }