diff options
author | Tamir Duberstein <tamird@google.com> | 2019-04-25 14:22:48 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-04-25 14:23:46 -0700 |
commit | 992b66e68887e87fd6ab8e6bbb8a46ed864f7a45 (patch) | |
tree | c6d2440a682b5ef0eb93d7e6e6bb4ef2f510f426 /test/util/posix_error.cc | |
parent | 9c638f1beb117282e2c586761c8b44be9aabba86 (diff) |
Handle glibc and XSI variants of strerror_r
PiperOrigin-RevId: 245306581
Change-Id: I44a034310809f8e9e651be8023ff1985561602fc
Diffstat (limited to 'test/util/posix_error.cc')
-rw-r--r-- | test/util/posix_error.cc | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/test/util/posix_error.cc b/test/util/posix_error.cc index 7b4b3524d..ead9ede16 100644 --- a/test/util/posix_error.cc +++ b/test/util/posix_error.cc @@ -32,13 +32,23 @@ std::string PosixError::ToString() const { std::string ret; char strerrno_buf[1024] = {}; - char* msg = nullptr; - if ((msg = strerror_r(errno_, strerrno_buf, sizeof(strerrno_buf))) == - nullptr) { - ret = absl::StrCat("PosixError(errno=", errno_, " strerror_r FAILED)"); + + auto res = strerror_r(errno_, strerrno_buf, sizeof(strerrno_buf)); + +// The GNU version of strerror_r always returns a non-null char* pointing to a +// buffer containing the stringified errno; the XSI version returns a positive +// errno which indicates the result of writing the stringified errno into the +// supplied buffer. The gymnastics below are needed to support both. +#ifndef _GNU_SOURCE + if (res != 0) { + ret = absl::StrCat("PosixError(errno=", errno_, " strerror_r FAILED(", ret, + "))"); } else { - ret = absl::StrCat("PosixError(errno=", errno_, " ", msg, ")"); + ret = absl::StrCat("PosixError(errno=", errno_, " ", strerrno_buf, ")"); } +#else + ret = absl::StrCat("PosixError(errno=", errno_, " ", res, ")"); +#endif if (!msg_.empty()) { ret.append(" "); |