Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

Commit

Permalink
Ignore using destructuring assignment to wildcard pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Aug 31, 2022
1 parent 831470b commit 653e0bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/fuzz_targets/fuzz_from_slice.rs
Expand Up @@ -4,6 +4,6 @@ use libfuzzer_sys::fuzz_target;

fuzz_target!(|data: &[u8]| {
if data.len() <= 10240 {
let _ = serde_yaml::from_slice::<serde_yaml::Value>(data);
_ = serde_yaml::from_slice::<serde_yaml::Value>(data);
}
});

0 comments on commit 653e0bb

Please sign in to comment.