From 5dd2dbabd4c0535c44321c6c2303acff093c18c7 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 2 Jan 2017 14:39:27 +0000 Subject: [PATCH 10/12] use posix strerror_r unless gnu --- open-vm-tools/lib/err/errPosix.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/open-vm-tools/lib/err/errPosix.c b/open-vm-tools/lib/err/errPosix.c index c81b4c13..a34e8190 100644 --- a/open-vm-tools/lib/err/errPosix.c +++ b/open-vm-tools/lib/err/errPosix.c @@ -63,11 +63,13 @@ ErrErrno2String(Err_Number errorNumber, // IN { char *p; -#if defined(__linux__) && !defined(__ANDROID__) +#if defined(__GLIBC__) p = strerror_r(errorNumber, buf, bufSize); #else - p = strerror(errorNumber); -#endif + if (strerror_r(errorNumber, buf, bufSize) != 0) + snprintf(buf, bufSize, "unknown error %i", errorNumber); + p = buf; +#endif /* defined __GLIBC__ */ ASSERT(p != NULL); return p; } -- 2.19.1