fuzz: limit input length (#238)

Longer inputs can lead to timeouts on oss-fuzz
This commit is contained in:
Randy
2022-05-06 03:49:11 +02:00
committed by GitHub
parent f0b370716b
commit 39dbf507d7

View File

@@ -5,6 +5,9 @@ int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
if(size < 1) return 0;
/* Avoid timeout with long inputs */
if(size > (64 * 1024)) return 0;
if(data[size-1] != '\0') return 0;
const uint8_t* ptr = data;