forked from forks/go-ethereum
tests/fuzzers/rlp: avoid very large input (#25109)
The oss-fuzz engine crashes due to stack overflow decoding a large nested
structure into a interface{}. This PR limits the size of the input data, so
should avoid such crashes.
This commit is contained in:
parent
ba99e19215
commit
01e5e9c2c3
1 changed files with 3 additions and 0 deletions
|
|
@ -40,6 +40,9 @@ func Fuzz(input []byte) int {
|
|||
if len(input) == 0 {
|
||||
return 0
|
||||
}
|
||||
if len(input) > 500*1024 {
|
||||
return 0
|
||||
}
|
||||
|
||||
var i int
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue