Some comments.
[openssl.git] / crypto / asn1 / a_utctm.c
index ebc6e384c1c3eeb7849c9e34fcd55692e476351f..557c1efb8e071a14f3cec61dfc825ffcd5281d7e 100644 (file)
@@ -177,7 +177,7 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t)
                return(NULL);
 
 #if defined(THREADS) && !defined(WIN32)
-       gmtime_r(&t,&data);
+       gmtime_r(&t,&data); /* should return &data, but doesn't on some systems, so we don't even look at the return value */
        ts=&data;
 #else
        ts=gmtime(&t);