forked from cerc-io/plugeth
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
@ -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 New Issue
Block a user