Fix timezone offset in date/time values (Issue #115)

This commit is contained in:
Michael R Sweet 2025-04-05 13:48:11 -04:00
parent 130cef8702
commit cbea3ecc2a
No known key found for this signature in database
GPG Key ID: BE67C75EC81F3244

View File

@ -858,13 +858,13 @@ get_date_time(const char *s) // I - PDF date/time value
// Convert date value to time_t...
#if _WIN32
if ((t = _mkgmtime(&dateval)) < 0)
if ((t = _mkgmtime(&dateval)) <= 0)
return (0);
#elif defined(HAVE_TIMEGM)
if ((t = timegm(&dateval)) < 0)
if ((t = timegm(&dateval)) <= 0)
return (0);
#else
if ((t = mktime(&dateval)) < 0)
if ((t = mktime(&dateval)) <= 0)
return (0);
# if defined(HAVE_TM_GMTOFF)
@ -875,5 +875,5 @@ get_date_time(const char *s) // I - PDF date/time value
# endif // HAVE_TM_GMTOFF
#endif // _WIN32
return (t + offset);
return (t - offset);
}