Bug fix
This commit is contained in:
parent
2e257141e6
commit
93a5be27ff
1 changed files with 3 additions and 4 deletions
|
@ -1037,11 +1037,10 @@ impl<W: Write + Seek> ZipWriter<W> {
|
||||||
#[cfg_attr(fuzzing, visibility::make(pub))]
|
#[cfg_attr(fuzzing, visibility::make(pub))]
|
||||||
#[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();
|
||||||
for (index, _) in name.match_indices("PK") {
|
for (index, _) in name.match_indices("PK") {
|
||||||
if name.len() >= index + 4 {
|
if bytes.len() >= index + 4 {
|
||||||
let magic_number = name[index..index + 4]
|
let magic_number = (&bytes[index..]).read_u32::<LittleEndian>()?;
|
||||||
.as_bytes()
|
|
||||||
.read_u32::<LittleEndian>()?;
|
|
||||||
match magic_number {
|
match magic_number {
|
||||||
spec::ZIP64_CENTRAL_DIRECTORY_END_SIGNATURE => {
|
spec::ZIP64_CENTRAL_DIRECTORY_END_SIGNATURE => {
|
||||||
return Err(InvalidArchive("Filename can't contain ZIP64 end signature"));
|
return Err(InvalidArchive("Filename can't contain ZIP64 end signature"));
|
||||||
|
|
Loading…
Add table
Reference in a new issue