mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
(__getdate_r): Initialize tm_isdst, tm_gmtoff and tm_zone before calling strptime.
This commit is contained in:
parent
8081cd9cd3
commit
e84ba51a3b
@ -151,6 +151,9 @@ __getdate_r (const char *string, struct tm *tp)
|
||||
/* Do the conversion. */
|
||||
tp->tm_year = tp->tm_mon = tp->tm_mday = tp->tm_wday = INT_MIN;
|
||||
tp->tm_hour = tp->tm_sec = tp->tm_min = INT_MIN;
|
||||
tp->tm_isdst = -1;
|
||||
tp->tm_gmtoff = 0;
|
||||
tp->tm_zone = NULL;
|
||||
result = strptime (string, line, tp);
|
||||
if (result && *result == '\0')
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user