Correct input length check for uin128 fuzzer

In an earlier version of the uint128 fuzz target, there was a byte
which incidated the specific operation to test. However, that was
dropped for the much-more-effective approach of simply testing all
operations in each fuzz iteration.
This commit is contained in:
Matt Corallo 2021-06-15 23:10:38 +00:00
parent 9c256cc88e
commit 5d71a9dd89
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ fn do_test(data: &[u8]) {
} }
}
if data.len() != 16*2 + 1 { return; }
if data.len() != 16*2 { return; }
let (a_native, a) = read_ints!(0);
// Checks using only a: