diff --git a/src/read.rs b/src/read.rs index d2e8e114..d05f61b1 100644 --- a/src/read.rs +++ b/src/read.rs @@ -717,7 +717,7 @@ impl ZipArchive { /// Get the index of a file entry by name, if it's present. #[inline(always)] pub fn index_for_name(&self, name: &str) -> Option { - self.shared.files.get_index_of(&*name) + self.shared.files.get_index_of(name) } /// Get the index of a file entry by path, if it's present.