mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
8 lines
179 B
Rust
8 lines
179 B
Rust
#![no_main]
|
|
|
|
use libfuzzer_sys::fuzz_target;
|
|
|
|
fuzz_target!(|input: ironrdp_fuzzing::generators::BitmapInput<'_>| {
|
|
ironrdp_fuzzing::oracles::rle_decompress_bitmap(input);
|
|
});
|