diff --git a/src/types.rs b/src/types.rs index ae276630..5a27b0b7 100644 --- a/src/types.rs +++ b/src/types.rs @@ -7,8 +7,6 @@ use std::mem; use std::path; use std::sync::{Arc, OnceLock}; -#[cfg(doc)] -use crate::read::ZipFile; #[cfg(feature = "chrono")] use chrono::{Datelike, NaiveDate, NaiveDateTime, NaiveTime, Timelike}; @@ -70,7 +68,7 @@ impl From for u8 { /// For example, it has a resolution of 2 seconds! /// /// A [`DateTime`] can be stored directly in a zipfile with [`FileOptions::last_modified_time`], -/// or read from one with [`ZipFile::last_modified`] +/// or read from one with [`ZipFile::last_modified`](crate::read::ZipFile::last_modified). /// /// # Warning /// diff --git a/src/write.rs b/src/write.rs index 4c98858b..337b167c 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1820,8 +1820,11 @@ fn validate_extra_data(header_id: u16, data: &[u8]) -> ZipResult<()> { fn write_local_zip64_extra_field(writer: &mut T, file: &ZipFileData) -> ZipResult<()> { // This entry in the Local header MUST include BOTH original // and compressed file size fields. - assert!(file.large_file); - let block = file.zip64_extra_field_block().unwrap(); + let Some(block) = file.zip64_extra_field_block() else { + return Err(ZipError::InvalidArchive( + "Attempted to write a ZIP64 extra field for a file that's within zip32 limits", + )); + }; let block = block.serialize(); writer.write_all(&block)?; Ok(()) @@ -1831,7 +1834,11 @@ fn update_local_zip64_extra_field( writer: &mut T, file: &ZipFileData, ) -> ZipResult<()> { - assert!(file.large_file); + if !file.large_file { + return Err(ZipError::InvalidArchive( + "Attempted to update a nonexistent ZIP64 extra field", + )); + } let zip64_extra_field = file.header_start + mem::size_of::() as u64