chore: Update due to merge of #82

This commit is contained in:
Chris Hennick 2024-05-02 17:55:13 -07:00
parent b520c7f517
commit 3cf7a520e0
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -1,9 +1,6 @@
use std::io::Read;
use byteorder::LittleEndian;
use byteorder::ReadBytesExt;
use crate::result::{ZipError, ZipResult};
use crate::unstable::LittleEndianReadExt;
use std::io::Read;
/// extended timestamp, as described in <https://libzip.org/specifications/extrafld.txt>
@ -23,7 +20,9 @@ impl ExtendedTimestamp {
where
R: Read,
{
let flags = reader.read_u8()?;
let mut flags = [0u8];
reader.read_exact(&mut flags)?;
let flags = flags[0];
// the `flags` field refers to the local headers and might not correspond
// to the len field. If the length field is 1+4, we assume that only
@ -48,19 +47,19 @@ impl ExtendedTimestamp {
}
let mod_time = if (flags & 0b00000001u8 == 0b00000001u8) || len == 5 {
Some(reader.read_u32::<LittleEndian>()?)
Some(reader.read_u32_le()?)
} else {
None
};
let ac_time = if flags & 0b00000010u8 == 0b00000010u8 && len > 5 {
Some(reader.read_u32::<LittleEndian>()?)
Some(reader.read_u32_le()?)
} else {
None
};
let cr_time = if flags & 0b00000100u8 == 0b00000100u8 && len > 5 {
Some(reader.read_u32::<LittleEndian>()?)
Some(reader.read_u32_le()?)
} else {
None
};