1
0
mirror of https://github.com/bspeice/dtparse synced 2024-11-12 17:08:09 -05:00

Fix typo in the fuzzer script

This commit is contained in:
Mike Meehan 2018-07-18 22:38:02 -04:00
parent ac95e9e8c3
commit 4acd072974

View File

@ -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);
}
}