From 97245ad68d79b56844d45211806e3ab5d3ec67c1 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Sun, 2 Jun 2024 22:04:15 -0700 Subject: [PATCH] chore: Fix a new Clippy warning --- src/read.rs | 2 +- src/spec.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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]> {