From a86a72fdc611a52a8caca8b07ad8e4dc1d679654 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 2 May 2024 19:20:43 -0700 Subject: [PATCH] chore: Fix conflicts with other recently-merged PRs --- src/read.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/read.rs b/src/read.rs index d05f61b1..10b9eaaf 100644 --- a/src/read.rs +++ b/src/read.rs @@ -343,7 +343,8 @@ impl ZipArchive { )); } /* This is where the whole file starts. */ - let initial_offset = files.first().unwrap().1.header_start; + let (_, first_header) = files.first().unwrap(); + let initial_offset = first_header.header_start; let shared = Arc::new(zip_archive::Shared { files, offset: initial_offset,