🚑 removed unsafe call to strerror #403

pull/410/head
Niels Lohmann 2016-12-28 14:19:08 +01:00
parent e4c2829aea
commit 8381cd6020
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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