diff options
-rw-r--r-- | src/Input.cc | 4 | ||||
-rw-r--r-- | src/Output.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Input.cc b/src/Input.cc index fafa649..481545e 100644 --- a/src/Input.cc +++ b/src/Input.cc @@ -181,8 +181,8 @@ void Balau::Input::close() throw (GeneralException) { case cbResults_t::CLOSE: m_fd = -1; if (cbResults->result < 0) { - char str[4096]; - strerror_r(cbResults->errorno, str, sizeof(str)); + char buf[4096]; + char * str = strerror_r(cbResults->errorno, buf, sizeof(buf)); throw GeneralException(String("Unable to close file ") + m_name + ": " + str); } delete cbResults; diff --git a/src/Output.cc b/src/Output.cc index 3ca97b0..03c0d6e 100644 --- a/src/Output.cc +++ b/src/Output.cc @@ -181,8 +181,8 @@ void Balau::Output::close() throw (GeneralException) { case cbResults_t::CLOSE: m_fd = -1; if (cbResults->result < 0) { - char str[4096]; - strerror_r(cbResults->errorno, str, sizeof(str)); + char buf[4096]; + char * str = strerror_r(cbResults->errorno, buf, sizeof(buf)); throw GeneralException(String("Unable to close file ") + m_name + ": " + str); } delete cbResults; |