style: Fix more Clippy warnings

This commit is contained in:
Chris Hennick 2024-06-14 00:21:52 -07:00
parent 94df73ea04
commit b635a7d7e3
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@ impl UnicodeExtraField {
/// Verifies the checksum and returns the content.
pub fn unwrap_valid(self) -> ZipResult<Box<[u8]>> {
let mut crc32 = crc32fast::Hasher::new();
crc32.update(&*self.content);
crc32.update(&self.content);
let actual_crc32 = crc32.finalize();
if self.crc32 != actual_crc32 {
return Err(ZipError::InvalidArchive(

View file

@ -1925,7 +1925,7 @@ const EXTRA_FIELD_MAPPING: [u16; 48] = [
#[cfg(test)]
#[allow(unknown_lints)] // needless_update is new in clippy pre 1.29.0
#[allow(needless_update)] // So we can use the same FileOptions decls with and without zopfli_buffer_size
#[allow(clippy::needless_update)] // So we can use the same FileOptions decls with and without zopfli_buffer_size
mod test {
use super::{FileOptions, ZipWriter};
use crate::compression::CompressionMethod;