fix: resolve new clippy warnings on nightly (#262)

This commit is contained in:
Richard Ivánek 2024-11-18 23:31:26 +01:00 committed by GitHub
parent 06632924e8
commit 1f2957db1f
Signed by: DevComp
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 6 deletions

View file

@ -182,7 +182,7 @@ impl ZipStreamFileMetadata {
self.name() self.name()
.chars() .chars()
.next_back() .next_back()
.map_or(false, |c| c == '/' || c == '\\') .is_some_and(|c| c == '/' || c == '\\')
} }
/// Returns whether the file is a regular file /// Returns whether the file is a regular file

View file

@ -699,7 +699,7 @@ pub(crate) fn is_dir(filename: &str) -> bool {
filename filename
.chars() .chars()
.next_back() .next_back()
.map_or(false, |c| c == '/' || c == '\\') .is_some_and(|c| c == '/' || c == '\\')
} }
#[cfg(test)] #[cfg(test)]

View file

@ -831,7 +831,7 @@ impl ZipFileData {
extra_field_length: extra_field_len.checked_add(central_extra_field_len).ok_or( extra_field_length: extra_field_len.checked_add(central_extra_field_len).ok_or(
ZipError::InvalidArchive("Extra field length in central directory exceeds 64KiB"), ZipError::InvalidArchive("Extra field length in central directory exceeds 64KiB"),
)?, )?,
file_comment_length: self.file_comment.as_bytes().len().try_into().unwrap(), file_comment_length: self.file_comment.len().try_into().unwrap(),
disk_number: 0, disk_number: 0,
internal_file_attributes: 0, internal_file_attributes: 0,
external_file_attributes: self.external_attributes, external_file_attributes: self.external_attributes,

View file

@ -911,9 +911,9 @@ impl<W: Write + Seek> ZipWriter<W> {
), ),
_ => (options.compression_method, None), _ => (options.compression_method, None),
}; };
let header_end = header_start let header_end =
+ size_of::<ZipLocalEntryBlock>() as u64 header_start + size_of::<ZipLocalEntryBlock>() as u64 + name.to_string().len() as u64;
+ name.to_string().as_bytes().len() as u64;
if options.alignment > 1 { if options.alignment > 1 {
let extra_data_end = header_end + extra_data.len() as u64; let extra_data_end = header_end + extra_data.len() as u64;
let align = options.alignment as u64; let align = options.alignment as u64;