mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-14 06:32:33 +00:00
11 lines
199 B
Rust
11 lines
199 B
Rust
|
#![no_main]
|
||
|
|
||
|
use std::io::Cursor;
|
||
|
|
||
|
use libfuzzer_sys::fuzz_target;
|
||
|
use lofty::AudioFile;
|
||
|
|
||
|
fuzz_target!(|data: Vec<u8>| {
|
||
|
let _ = lofty::ogg::SpeexFile::read_from(&mut Cursor::new(data), false);
|
||
|
});
|