projects
/
external
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8081cd9
)
(__getdate_r): Initialize tm_isdst, tm_gmtoff and tm_zone before calling strptime.
author
Ulrich Drepper
<drepper@redhat.com>
Tue, 17 Jul 2001 18:07:32 +0000
(18:07 +0000)
committer
Ulrich Drepper
<drepper@redhat.com>
Tue, 17 Jul 2001 18:07:32 +0000
(18:07 +0000)
time/getdate.c
patch
|
blob
|
history
diff --git
a/time/getdate.c
b/time/getdate.c
index
8ed293c
..
8c9d16f
100644
(file)
--- a/
time/getdate.c
+++ b/
time/getdate.c
@@
-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;