review comments 2

This commit is contained in:
Danny McClanahan 2024-05-22 12:31:36 -04:00
parent 7c2474f80c
commit 0b31d9846a
No known key found for this signature in database
GPG key ID: 6105C10F1A199CC7
2 changed files with 11 additions and 6 deletions

View file

@ -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<System> 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
///

View file

@ -1820,8 +1820,11 @@ fn validate_extra_data(header_id: u16, data: &[u8]) -> ZipResult<()> {
fn write_local_zip64_extra_field<T: Write>(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<T: Write + Seek>(
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::<ZipLocalEntryBlock>() as u64