From: Thomas G. Lockhart Date: Sat, 25 Oct 1997 05:18:17 +0000 (+0000) Subject: Fix occasional uninitialized variable fractional seconds X-Git-Tag: REL6_3~758 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c1557a2ffa2a422f39061f85d53f32996e4c35a;p=postgresql Fix occasional uninitialized variable fractional seconds in DecodeTimeOnly(). Only present when seconds are not specified for input. --- diff --git a/src/backend/utils/adt/dt.c b/src/backend/utils/adt/dt.c index 944762b51a..070e25230f 100644 --- a/src/backend/utils/adt/dt.c +++ b/src/backend/utils/adt/dt.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.42 1997/10/17 05:36:01 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/adt/Attic/dt.c,v 1.43 1997/10/25 05:18:17 thomas Exp $ * *------------------------------------------------------------------------- */ @@ -3112,8 +3112,8 @@ DecodeTimeOnly(char *field[], int ftype[], int nf, int *dtype, struct tm * tm, d tm->tm_hour = 0; tm->tm_min = 0; tm->tm_sec = 0; - tm->tm_isdst = -1; /* don't know daylight savings time status - * apriori */ + tm->tm_isdst = -1; /* don't know daylight savings time status apriori */ + *fsec = 0; fmask = DTK_DATE_M;