mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 14:44:22 +00:00
13 lines
258 B
Rust
13 lines
258 B
Rust
#![no_main]
|
|
|
|
use std::io::Cursor;
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
use lofty::{AudioFile, ParseOptions};
|
|
|
|
fuzz_target!(|data: Vec<u8>| {
|
|
let _ = lofty::mp4::Mp4File::read_from(
|
|
&mut Cursor::new(data),
|
|
ParseOptions::new().read_properties(false),
|
|
);
|
|
});
|