]> granicus.if.org Git - postgresql/commitdiff
Fix occasional uninitialized variable fractional seconds
authorThomas G. Lockhart <lockhart@fourpalms.org>
Sat, 25 Oct 1997 05:18:17 +0000 (05:18 +0000)
committerThomas G. Lockhart <lockhart@fourpalms.org>
Sat, 25 Oct 1997 05:18:17 +0000 (05:18 +0000)
 in DecodeTimeOnly(). Only present when seconds are not specified
 for input.

src/backend/utils/adt/dt.c

index 944762b51aa561120b3612898175fa09e582c968..070e25230fb7ea320069535276884796008612c6 100644 (file)
@@ -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;