Merge pull request #5140 from alexrp/profiler-stress-fpe-fix
[mono.git] / mono / btls / btls-util.c
index 7c7f4ca5b41a511496b431425788a3531f425749..955b8c85aec4fa4eea5ae2bc972c0b88bdaa23e4 100644 (file)
@@ -27,12 +27,12 @@ mono_btls_util_asn1_time_to_ticks (ASN1_TIME *time)
        ASN1_GENERALIZEDTIME *gtime;
        struct tm tm;
        int64_t epoch;
-       int ret;
        
        memset (&tm, 0, sizeof (tm));
 
        gtime = ASN1_TIME_to_generalizedtime (time, NULL);
-       ret = asn1_generalizedtime_to_tm (&tm, gtime);
+       /* FIXME: check return value of  asn1_generalizedtime_to_tm () */
+       asn1_generalizedtime_to_tm (&tm, gtime);
        ASN1_GENERALIZEDTIME_free (gtime);
        epoch = btls_timegm64 (&tm);