1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-22 15:21:52 +03:00

🐛 fixing #575

I forgot to consider the offset.
This commit is contained in:
Niels Lohmann
2017-05-07 13:41:48 +02:00
parent 56ac7908f1
commit fba1bcdd0b
2 changed files with 7 additions and 1 deletions

View File

@ -1010,4 +1010,10 @@ TEST_CASE("regression tests")
CHECK(not(6 <= j["a"]));
CHECK(not(6 < j["a"]));
}
SECTION("issue #575 - heap-buffer-overflow (OSS-Fuzz 1400)")
{
std::vector<uint8_t> vec = {'"', '\\', '"', 'X', '"', '"'};
CHECK_THROWS_AS(json::parse(vec), json::parse_error);
}
}