Files

8 lines
127 B
Rust
Raw Permalink Normal View History

2019-10-22 15:38:55 -04:00
#![no_main]
use libfuzzer_sys::fuzz_target;
2019-10-22 15:38:55 -04:00
fuzz_target!(|data: &[u8]| {
ironrdp_fuzzing::oracles::pdu_decode(data);
2019-10-22 15:38:55 -04:00
});