mirror of
https://github.com/bspeice/dtparse
synced 2025-06-30 21:36:38 -04:00
Fix typo in the fuzzer script
This commit is contained in:
@ -4,7 +4,7 @@ extern crate dtparse;
|
||||
use dtparse::parse;
|
||||
#[export_name="rust_fuzzer_test_input"]
|
||||
pub extern fn go(data: &[u8]) {
|
||||
if let Ok(s) = sd::str::from_utf8(data) {
|
||||
if let Ok(s) = std::str::from_utf8(data) {
|
||||
parse(s);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user