From 93babfc4807262c7c07811c0ec0141e2e2e159e8 Mon Sep 17 00:00:00 2001 From: Igor Mandrigin <i@mandrigin.ru> Date: Wed, 17 Mar 2021 10:44:23 +0100 Subject: [PATCH] fix rlp fuzzer issue --- oss-fuzz.sh | 0 tests/fuzzers/rlp/rlp_fuzzer.go | 13 ++++++------- 2 files changed, 6 insertions(+), 7 deletions(-) mode change 100644 => 100755 oss-fuzz.sh diff --git a/oss-fuzz.sh b/oss-fuzz.sh old mode 100644 new mode 100755 diff --git a/tests/fuzzers/rlp/rlp_fuzzer.go b/tests/fuzzers/rlp/rlp_fuzzer.go index 5c8772d460..0db449e1d5 100644 --- a/tests/fuzzers/rlp/rlp_fuzzer.go +++ b/tests/fuzzers/rlp/rlp_fuzzer.go @@ -43,16 +43,15 @@ func Fuzz(input []byte) int { var i int { - if _, _, _, err := rlp.Split(input); err != nil { - panic(err) - } + if _, _, _, err := rlp.Split(input); err != nil { + panic(err) } } + { - if elems, _, err := rlp.SplitList(input); err == nil { - if _, err = rlp.CountValues(elems); err != nil { - panic(err) - } + if elems, _, err := rlp.SplitList(input); err == nil { + if _, err = rlp.CountValues(elems); err != nil { + panic(err) } } } -- GitLab