diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:17:27 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:17:27 +0000 |
commit | 67c32a98315f785a9ec9d531c1f571a0196c7463 (patch) | |
tree | 4abb9cbeecc7901726dd0b4a37369596c852e9ef /lib/Support/Errno.cpp | |
parent | 9f61947910e6ab40de38e6b4034751ef1513200f (diff) |
Diffstat (limited to 'lib/Support/Errno.cpp')
-rw-r--r-- | lib/Support/Errno.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/Support/Errno.cpp b/lib/Support/Errno.cpp index 1eefa3e6f8d4..3ba2a1277d05 100644 --- a/lib/Support/Errno.cpp +++ b/lib/Support/Errno.cpp @@ -35,12 +35,14 @@ std::string StrError() { #endif // HAVE_ERRNO_H std::string StrError(int errnum) { - const int MaxErrStrLen = 2000; - char buffer[MaxErrStrLen]; - buffer[0] = '\0'; std::string str; if (errnum == 0) return str; +#if defined(HAVE_STRERROR_R) || HAVE_DECL_STRERROR_S + const int MaxErrStrLen = 2000; + char buffer[MaxErrStrLen]; + buffer[0] = '\0'; +#endif #ifdef HAVE_STRERROR_R // strerror_r is thread-safe. |