diff options
-rw-r--r-- | sal/osl/unx/security.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sal/osl/unx/security.cxx b/sal/osl/unx/security.cxx index d2b1c1d99718..28b32b6106c7 100644 --- a/sal/osl/unx/security.cxx +++ b/sal/osl/unx/security.cxx @@ -40,6 +40,9 @@ #define getpwuid_r(uid, pwd, buf, buflen, result) (*(result) = getpwuid(uid), (*(result) ? (memcpy (buf, *(result), sizeof (struct passwd)), 0) : errno)) #endif +#ifndef SIZE_MAX +#define SIZE_MAX ((size_t)-1) +#endif static oslSecurityError SAL_CALL osl_psz_loginUser(const sal_Char* pszUserName, const sal_Char* pszPasswd, |