(__getdate_r): Initialize tm_isdst, tm_gmtoff and tm_zone before calling strptime.

This commit is contained in:
Ulrich Drepper 2001-07-17 18:07:32 +00:00
parent 8081cd9cd3
commit e84ba51a3b
1 changed files with 3 additions and 0 deletions

View File

@ -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;