🚑 fix for #519

Added catch branch for out_of_range exception that can occur if input
file contains a number overflow.
This commit is contained in:
Niels Lohmann 2017-03-17 22:18:48 +01:00
parent f547679de5
commit 31a6c0910e
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -59,6 +59,10 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
// parse errors are ok, because input may be random bytes
}
catch (const json::out_of_range&)
{
// parse errors are ok, because input may be random bytes
}
// return 0 - non-zero return values are reserved for future use
return 0;