mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2025-03-04 23:07:20 +00:00
None of the fuzz targets have been touched in awhile, so they haven't been compiling for most of the year probably.
6 lines
155 B
Rust
6 lines
155 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
let _ = lofty::picture::Picture::from_ape_bytes("Cover Art (Front)", data);
|
|
});
|