chore: Fix a new Clippy warning

This commit is contained in:
Chris Hennick 2024-06-02 22:04:15 -07:00
parent 2725416c0d
commit 97245ad68d
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 3 additions and 3 deletions

View file

@ -1541,7 +1541,7 @@ pub fn read_zipfile_from_stream<'a, R: Read>(reader: &'a mut R) -> ZipResult<Opt
_ => return Err(ZipError::InvalidArchive("Invalid local file header")),
}
let block = ZipLocalEntryBlock::interpret(block)?;
let block = ZipLocalEntryBlock::interpret(&block)?;
let mut result = ZipFileData::from_local_block(block, reader)?;

View file

@ -105,7 +105,7 @@ pub(crate) trait FixedSizeBlock: Sized + Copy {
const WRONG_MAGIC_ERROR: ZipError;
/* TODO: use smallvec? */
fn interpret(bytes: Box<[u8]>) -> ZipResult<Self> {
fn interpret(bytes: &[u8]) -> ZipResult<Self> {
if bytes.len() != mem::size_of::<Self>() {
return Err(ZipError::InvalidArchive("Block is wrong size"));
}
@ -123,7 +123,7 @@ pub(crate) trait FixedSizeBlock: Sized + Copy {
fn parse<T: Read>(reader: &mut T) -> ZipResult<Self> {
let mut block = vec![0u8; mem::size_of::<Self>()].into_boxed_slice();
reader.read_exact(&mut block)?;
Self::interpret(block)
Self::interpret(&block)
}
fn encode(self) -> Box<[u8]> {