This commit is contained in:
Danny McClanahan 2024-05-22 13:06:56 -04:00
parent 4a784b5636
commit fe663b9ee6
No known key found for this signature in database
GPG key ID: 6105C10F1A199CC7
2 changed files with 2 additions and 1 deletions

View file

@ -1142,6 +1142,7 @@ fn parse_extra_field(file: &mut ZipFileData) -> ZipResult<()> {
};
let mut reader = io::Cursor::new(extra_field.as_ref());
/* TODO: codify this structure into Zip64ExtraFieldBlock fields! */
while (reader.position() as usize) < extra_field.len() {
let kind = reader.read_u16_le()?;
let len = reader.read_u16_le()?;

View file

@ -849,7 +849,7 @@ impl ZipFileData {
#[derive(Copy, Clone, Debug)]
#[repr(packed)]
pub(crate) struct ZipCentralEntryBlock {
pub magic: spec::Magic,
magic: spec::Magic,
pub version_made_by: u16,
pub version_to_extract: u16,
pub flags: u16,