mirror of
https://github.com/exoticorn/upkr.git
synced 2026-01-20 19:46:42 +01:00
7 lines
147 B
Rust
7 lines
147 B
Rust
#![no_main]
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
let _ = upkr::unpack(data, &upkr::Config::default(), 64 * 1024);
|
|
});
|