mirror of
https://github.com/nlohmann/json.git
synced 2025-07-28 12:02:00 +03:00
We should compare the binary serializations rather than the JSON values themselves. This fix was already done for CBOR and apparently forgotten for MessagePack.
This commit is contained in:
@ -41,8 +41,8 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
|
|||||||
// parse serialization
|
// parse serialization
|
||||||
json j2 = json::from_msgpack(vec2);
|
json j2 = json::from_msgpack(vec2);
|
||||||
|
|
||||||
// deserializations must match
|
// serializations must match
|
||||||
assert(j1 == j2);
|
assert(json::to_msgpack(j2) == vec2);
|
||||||
}
|
}
|
||||||
catch (const json::parse_error&)
|
catch (const json::parse_error&)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user