Files
chatmail-core/fuzz/fuzz_targets/fuzz_dateparse.rs
2022-12-28 16:23:19 +00:00

11 lines
215 B
Rust

use bolero::check;
fn main() {
check!().for_each(|data: &[u8]| match std::str::from_utf8(data) {
Ok(input) => {
mailparse::dateparse(input).ok();
}
Err(_err) => {}
});
}