Bug fix
This commit is contained in:
parent
93a5be27ff
commit
5a11cbeaee
1 changed files with 13 additions and 13 deletions
26
src/write.rs
26
src/write.rs
|
@ -1038,20 +1038,20 @@ impl<W: Write + Seek> ZipWriter<W> {
|
||||||
#[cfg_attr(fuzzing, allow(missing_docs))]
|
#[cfg_attr(fuzzing, allow(missing_docs))]
|
||||||
pub(crate) fn validate_name(name: &String) -> ZipResult<()> {
|
pub(crate) fn validate_name(name: &String) -> ZipResult<()> {
|
||||||
let bytes = name.as_bytes();
|
let bytes = name.as_bytes();
|
||||||
for (index, _) in name.match_indices("PK") {
|
let mut current_window = [0u8; 4];
|
||||||
if bytes.len() >= index + 4 {
|
for window in bytes.windows(4) {
|
||||||
let magic_number = (&bytes[index..]).read_u32::<LittleEndian>()?;
|
current_window.copy_from_slice(window);
|
||||||
match magic_number {
|
let magic_number = u32::from_le_bytes(current_window);
|
||||||
spec::ZIP64_CENTRAL_DIRECTORY_END_SIGNATURE => {
|
match magic_number {
|
||||||
return Err(InvalidArchive("Filename can't contain ZIP64 end signature"));
|
spec::ZIP64_CENTRAL_DIRECTORY_END_SIGNATURE => {
|
||||||
}
|
return Err(InvalidArchive("Filename can't contain ZIP64 end signature"));
|
||||||
spec::ZIP64_CENTRAL_DIRECTORY_END_LOCATOR_SIGNATURE => {
|
|
||||||
return Err(InvalidArchive(
|
|
||||||
"Filename can't contain ZIP64 end-locator signature",
|
|
||||||
));
|
|
||||||
}
|
|
||||||
_ => {}
|
|
||||||
}
|
}
|
||||||
|
spec::ZIP64_CENTRAL_DIRECTORY_END_LOCATOR_SIGNATURE => {
|
||||||
|
return Err(InvalidArchive(
|
||||||
|
"Filename can't contain ZIP64 end-locator signature",
|
||||||
|
));
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Add table
Reference in a new issue