1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-28 12:02:00 +03:00

🚑 fix for #516 and #518

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:
Niels Lohmann
2017-03-17 22:18:05 +01:00
parent 2d474b5273
commit f547679de5

View File

@ -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&)
{ {