aboutsummaryrefslogtreecommitdiff
path: root/fuzz/fuzz_targets/decode_does_not_panic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/fuzz_targets/decode_does_not_panic.rs')
-rw-r--r--fuzz/fuzz_targets/decode_does_not_panic.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/fuzz/fuzz_targets/decode_does_not_panic.rs b/fuzz/fuzz_targets/decode_does_not_panic.rs
index 5e6c15d..fd6efec 100644
--- a/fuzz/fuzz_targets/decode_does_not_panic.rs
+++ b/fuzz/fuzz_targets/decode_does_not_panic.rs
@@ -6,7 +6,7 @@ fuzz_target!(|data: &[u8]| {
let x86_64_decoder = yaxpeax_x86::long_mode::InstDecoder::default();
let x86_32_decoder = yaxpeax_x86::protected_mode::InstDecoder::default();
let x86_16_decoder = yaxpeax_x86::real_mode::InstDecoder::default();
- drop(x86_64_decoder.decode_slice(data));
- drop(x86_32_decoder.decode_slice(data));
- drop(x86_16_decoder.decode_slice(data));
+ x86_64_decoder.decode_slice(data).expect("is ok");
+ x86_32_decoder.decode_slice(data).expect("is ok");
+ x86_16_decoder.decode_slice(data).expect("is ok");
});