summaryrefslogtreecommitdiff
path: root/fuzz/fuzz_targets/fuzz_target_vrrpv2.rs
blob: ec03ae45b7d8535ce5ca30f732e43ec1fb6c8395 (plain)
1
2
3
4
5
6
7
8
#![no_main]

use libfuzzer_sys::fuzz_target;
use vrrpd::vrrpv2;

fuzz_target!(|data: &[u8]| {
    let _ = vrrpv2::from_bytes(data);
});