mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 09:08:04 -05:00
Fix asn1_get_time_t timezone offset
mktime takes an input in local time, but what we have is UTC. timegm does the right thing but is a nonstandard GNU and BSD extension, while Windows has _mkgmtime.
This commit is contained in:
parent
27a2a2bfa3
commit
c5ad70d31a
@ -2095,7 +2095,11 @@ static time_t asn1_get_time_t(const ASN1_TIME *s)
|
|||||||
return INVALID_TIME;
|
return INVALID_TIME;
|
||||||
}
|
}
|
||||||
if (ASN1_TIME_to_tm(s, &tm)) {
|
if (ASN1_TIME_to_tm(s, &tm)) {
|
||||||
return mktime(&tm);
|
#ifdef _WIN32
|
||||||
|
return _mkgmtime(&tm);
|
||||||
|
#else
|
||||||
|
return timegm(&tm);
|
||||||
|
#endif
|
||||||
} else {
|
} else {
|
||||||
return INVALID_TIME;
|
return INVALID_TIME;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user