mirror of
https://github.com/nlohmann/json.git
synced 2024-12-03 05:29:01 +08:00
🚑 removed unsafe call to strerror #403
This commit is contained in:
parent
e4c2829aea
commit
8381cd6020
@ -9077,7 +9077,7 @@ class basic_json
|
||||
// immediately abort if stream is erroneous
|
||||
if (s.fail())
|
||||
{
|
||||
throw std::invalid_argument("stream error: " + std::string(strerror(errno)));
|
||||
throw std::invalid_argument("stream error");
|
||||
}
|
||||
|
||||
// fill buffer
|
||||
|
@ -9077,7 +9077,7 @@ class basic_json
|
||||
// immediately abort if stream is erroneous
|
||||
if (s.fail())
|
||||
{
|
||||
throw std::invalid_argument("stream error: " + std::string(strerror(errno)));
|
||||
throw std::invalid_argument("stream error");
|
||||
}
|
||||
|
||||
// fill buffer
|
||||
|
Loading…
Reference in New Issue
Block a user