-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AAC: Fix overflow on tag size mismatches
- Loading branch information
1 parent
9c967f6
commit 34238b5
Showing
4 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
use lofty::aac::AacFile; | ||
use lofty::config::ParseOptions; | ||
use lofty::file::AudioFile; | ||
|
||
#[test] | ||
fn panic1() { | ||
let mut reader = crate::get_reader( | ||
"aacfile_read_from/01 - aalborg_IDX_9_RAND_168952727934877251846138.mp3", | ||
); | ||
let _ = AacFile::read_from(&mut reader, ParseOptions::new()); | ||
} |
Binary file added
BIN
+10 Bytes
...tests/fuzz/assets/aacfile_read_from/01 - aalborg_IDX_9_RAND_168952727934877251846138.mp3
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters