This repository has been archived on 2021-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
git-config/fuzz/fuzz_targets/parser.rs
2021-02-24 16:30:14 -05:00

8 lines
141 B
Rust

#![no_main]
use git_config::parser::Parser;
use libfuzzer_sys::fuzz_target;
fuzz_target!(|data: &[u8]| {
Parser::from_bytes(data);
});