Remove unused variable.
[openssl.git] / crypto / o_time.c
index ca5f3ea48e0a259e39e6575d65a33a21311db244..723eb1b5af781927047003144bc98f554fbe2a66 100644 (file)
@@ -80,8 +80,10 @@ struct tm *OPENSSL_gmtime(const time_t *timer, struct tm *result)
        ts = result;
 #elif !defined(OPENSSL_SYS_VMS)
        ts = gmtime(timer);
-       if (ts != NULL)
-               memcpy(result, ts, sizeof(struct tm));
+       if (ts == NULL)
+               return NULL;
+
+       memcpy(result, ts, sizeof(struct tm));
        ts = result;
 #endif
 #ifdef OPENSSL_SYS_VMS