Skip to content

Commit 238328d

Browse files
committed
fuzz: fix elichai's nits
1 parent d1714ce commit 238328d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

secp256k1-sys/src/recovery.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,8 @@ mod fuzz_dummy {
118118
) -> c_int {
119119
let sig_sl = slice::from_raw_parts(sig as *const u8, 65);
120120
let msg_sl = slice::from_raw_parts(msg32 as *const u8, 32);
121-
println!("HMM0");
122121

123-
if sig_sl[64] > 4 {
122+
if sig_sl[64] >= 4 {
124123
return 0;
125124
}
126125
// Pull the original pk out of the siganture

0 commit comments

Comments
 (0)