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:
parent
d98bf0278d
commit
1a9de88117
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user