write file comment to central directory header
This commit is contained in:
parent
ea308499af
commit
ad1d51d099
2 changed files with 1 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -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(())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue