1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-25 13:41:56 +03:00

🚑 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

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;