From 93a5be27ffb1d387899c3f59a8de1462f0d48697 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Thu, 11 May 2023 20:49:42 -0700 Subject: [PATCH] Bug fix --- src/write.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/write.rs b/src/write.rs index 7dfef832..daf93465 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1037,11 +1037,10 @@ impl ZipWriter { #[cfg_attr(fuzzing, visibility::make(pub))] #[cfg_attr(fuzzing, allow(missing_docs))] pub(crate) fn validate_name(name: &String) -> ZipResult<()> { + let bytes = name.as_bytes(); for (index, _) in name.match_indices("PK") { - if name.len() >= index + 4 { - let magic_number = name[index..index + 4] - .as_bytes() - .read_u32::()?; + if bytes.len() >= index + 4 { + let magic_number = (&bytes[index..]).read_u32::()?; match magic_number { spec::ZIP64_CENTRAL_DIRECTORY_END_SIGNATURE => { return Err(InvalidArchive("Filename can't contain ZIP64 end signature"));