1
0
mirror of https://github.com/nlohmann/json synced 2024-11-10 14:30:08 +00:00

🚨 fix a linter warning

Coverity detected two "Memory - illegal accesses  (OVERRUN)" issues. Resizing the buffer should silence this warning.
This commit is contained in:
Niels Lohmann 2019-11-07 08:00:21 +01:00
parent d98bf0278d
commit 1a9de88117
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -359,7 +359,7 @@ TEST_CASE("formatting")
{
auto check_float = [](float number, const std::string & expected)
{
char buf[32];
char buf[33];
char* end = nlohmann::detail::to_chars(buf, buf + 32, number);
std::string actual(buf, end);
@ -419,7 +419,7 @@ TEST_CASE("formatting")
{
auto check_double = [](double number, const std::string & expected)
{
char buf[32];
char buf[33];
char* end = nlohmann::detail::to_chars(buf, buf + 32, number);
std::string actual(buf, end);