diff --git a/src/read.rs b/src/read.rs index dad20c26..15210f58 100644 --- a/src/read.rs +++ b/src/read.rs @@ -650,6 +650,16 @@ pub(crate) fn central_header_to_zip_file( archive_offset: u64, ) -> ZipResult { let central_header_start = reader.stream_position()?; + + central_header_to_zip_file_inner(reader, archive_offset, central_header_start) +} + +/// Parse a central directory entry to collect the information for the file. +fn central_header_to_zip_file_inner( + reader: &mut R, + central_header_start: u64, + archive_offset: u64, +) -> ZipResult { // Parse central header let signature = reader.read_u32::()?; if signature != spec::CENTRAL_DIRECTORY_HEADER_SIGNATURE {