diff --git a/src/read.rs b/src/read.rs index 0ab5acd2..7dc60a61 100644 --- a/src/read.rs +++ b/src/read.rs @@ -1541,7 +1541,7 @@ pub fn read_zipfile_from_stream<'a, R: Read>(reader: &'a mut R) -> ZipResult 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)?; diff --git a/src/spec.rs b/src/spec.rs index 22fb7fd5..8a6feff0 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -105,7 +105,7 @@ pub(crate) trait FixedSizeBlock: Sized + Copy { const WRONG_MAGIC_ERROR: ZipError; /* TODO: use smallvec? */ - fn interpret(bytes: Box<[u8]>) -> ZipResult { + fn interpret(bytes: &[u8]) -> ZipResult { if bytes.len() != mem::size_of::() { return Err(ZipError::InvalidArchive("Block is wrong size")); } @@ -123,7 +123,7 @@ pub(crate) trait FixedSizeBlock: Sized + Copy { fn parse(reader: &mut T) -> ZipResult { let mut block = vec![0u8; mem::size_of::()].into_boxed_slice(); reader.read_exact(&mut block)?; - Self::interpret(block) + Self::interpret(&block) } fn encode(self) -> Box<[u8]> {