diff options
Diffstat (limited to 'crypto/o_time.c')
| -rw-r--r-- | crypto/o_time.c | 7 | 
1 files changed, 2 insertions, 5 deletions
diff --git a/crypto/o_time.c b/crypto/o_time.c index b99e5990b4e4e..04d805d9a96d0 100644 --- a/crypto/o_time.c +++ b/crypto/o_time.c @@ -106,11 +106,8 @@ struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result)      struct tm *ts = NULL;  #if defined(OPENSSL_THREADS) && !defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_SYS_OS2) && (!defined(OPENSSL_SYS_VMS) || defined(gmtime_r)) && !defined(OPENSSL_SYS_MACOSX) && !defined(OPENSSL_SYS_SUNOS) -    /* -     * should return &data, but doesn't on some systems, so we don't even -     * look at the return value -     */ -    gmtime_r(timer, result); +    if (gmtime_r(timer, result) == NULL) +        return NULL;      ts = result;  #elif !defined(OPENSSL_SYS_VMS) || defined(VMS_GMTIME_OK)      ts = gmtime(timer);  | 
