mirror of
https://codeberg.org/icewind/vmdl.git
synced 2026-06-03 16:44:11 +02:00
fmt
This commit is contained in:
parent
c55dec1b4f
commit
f4f173c84e
11 changed files with 134 additions and 52 deletions
8
fuzz/fuzz_targets/vvd.rs
Normal file
8
fuzz/fuzz_targets/vvd.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#![no_main]
|
||||
use libfuzzer_sys::fuzz_target;
|
||||
|
||||
fn fuzz(data: &[u8]) {
|
||||
let _ = vmdl::Mdl::read(data).ok();
|
||||
}
|
||||
|
||||
fuzz_target!(|data: &[u8]| {fuzz(data)});
|
||||
Loading…
Add table
Add a link
Reference in a new issue