write file comment to central directory header

This commit is contained in:
Danny McClanahan 2024-05-13 00:40:53 -04:00
parent ea308499af
commit ad1d51d099
No known key found for this signature in database
GPG key ID: 6105C10F1A199CC7
2 changed files with 1 additions and 2 deletions

View file

@ -775,7 +775,6 @@ impl ZipFileData {
extra_field_length: zip64_extra_field_length
+ extra_field_len
+ central_extra_field_len,
/* FIXME: this appears to be set to 0 in write_central_directory_header() on master? */
file_comment_length: self.file_comment.as_bytes().len().try_into().unwrap(),
disk_number: 0,
internal_file_attributes: 0,

View file

@ -1777,7 +1777,7 @@ fn write_central_directory_header<T: Write>(writer: &mut T, file: &ZipFileData)
writer.write_all(central_extra_field)?;
}
// file comment
// <none>
writer.write_all(file.file_comment.as_bytes())?;
Ok(())
}