We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c06eda commit 883ea92Copy full SHA for 883ea92
1 file changed
mp4parse/src/lib.rs
@@ -4485,6 +4485,7 @@ fn read_ftyp<T: Read>(src: &mut BMFFBox<T>) -> Result<FileTypeBox> {
4485
let major = be_u32(src)?;
4486
let minor = be_u32(src)?;
4487
let bytes_left = src.bytes_left();
4488
+ #[allow(clippy::manual_is_multiple_of)] // Allow until Gecko's MSRV is 1.87.
4489
if bytes_left % 4 != 0 {
4490
return Status::FtypBadSize.into();
4491
}
0 commit comments