chore: Update due to merge of #82
This commit is contained in:
parent
b520c7f517
commit
3cf7a520e0
1 changed files with 8 additions and 9 deletions
|
@ -1,9 +1,6 @@
|
||||||
use std::io::Read;
|
|
||||||
|
|
||||||
use byteorder::LittleEndian;
|
|
||||||
use byteorder::ReadBytesExt;
|
|
||||||
|
|
||||||
use crate::result::{ZipError, ZipResult};
|
use crate::result::{ZipError, ZipResult};
|
||||||
|
use crate::unstable::LittleEndianReadExt;
|
||||||
|
use std::io::Read;
|
||||||
|
|
||||||
/// extended timestamp, as described in <https://libzip.org/specifications/extrafld.txt>
|
/// extended timestamp, as described in <https://libzip.org/specifications/extrafld.txt>
|
||||||
|
|
||||||
|
@ -23,7 +20,9 @@ impl ExtendedTimestamp {
|
||||||
where
|
where
|
||||||
R: Read,
|
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
|
// 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
|
// 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 {
|
let mod_time = if (flags & 0b00000001u8 == 0b00000001u8) || len == 5 {
|
||||||
Some(reader.read_u32::<LittleEndian>()?)
|
Some(reader.read_u32_le()?)
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
let ac_time = if flags & 0b00000010u8 == 0b00000010u8 && len > 5 {
|
let ac_time = if flags & 0b00000010u8 == 0b00000010u8 && len > 5 {
|
||||||
Some(reader.read_u32::<LittleEndian>()?)
|
Some(reader.read_u32_le()?)
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
||||||
let cr_time = if flags & 0b00000100u8 == 0b00000100u8 && len > 5 {
|
let cr_time = if flags & 0b00000100u8 == 0b00000100u8 && len > 5 {
|
||||||
Some(reader.read_u32::<LittleEndian>()?)
|
Some(reader.read_u32_le()?)
|
||||||
} else {
|
} else {
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue