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