blob: 374936c4cd8c47900f7a3b8424e492a40b53dbff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![no_main]
use askama_parser::*;
use libfuzzer_sys::fuzz_target;
use std::str;
fuzz_target!(|data: &[u8]| {
// fuzzed code goes here
if data.len() < 500 {
if let Ok(data) = str::from_utf8(data) {
if let Ok(_) = Ast::from_str(data, &Syntax::default()) {}
}
}
});
|