[fuzz] fix bounds checking in cli-fuzzer (#11991)

This commit is contained in:
Jonathan Hui
2025-10-02 15:59:05 -07:00
committed by GitHub
parent a534551efe
commit 3e9c7285c8
+1 -1
View File
@@ -83,7 +83,7 @@ static int CliOutput(void *aContext, const char *aFormat, va_list aArguments)
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
const uint16_t kMaxCommandSize = 65536;
const uint16_t kMaxCommandSize = 4096;
FuzzDataProvider fdp(data, size);