]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* cpppch.c (cpp_valid_state): Unconditionally initialize nl.
authorLoren J. Rittle <ljrittle@acm.org>
Thu, 17 Apr 2003 23:10:17 +0000 (23:10 +0000)
committerLoren J. Rittle <ljrittle@gcc.gnu.org>
Thu, 17 Apr 2003 23:10:17 +0000 (23:10 +0000)
From-SVN: r65755

gcc/ChangeLog
gcc/cpppch.c

index df58352d177b71ae4b4e49d24e4246ede44da54b..ff7bf20500b01ea030cd3278acc4764f72fb3060 100644 (file)
@@ -1,3 +1,7 @@
+2003-04-07  Loren James Rittle  <ljrittle@acm.org>
+
+       * cpppch.c (cpp_valid_state): Unconditionally initialize nl.
+
 2003-04-17  Kazu Hirata  <kazu@cs.umass.edu>
 
        * reload1.c (move2add_last_cc0): New.
index 637160cd1a899156c7d9e927d4cc4ac6e0118a30..388a7532c11a1142f22965b56bb8d35502567edc 100644 (file)
@@ -455,7 +455,7 @@ cpp_valid_state (r, name, fd)
   size_t namebufsz = 256;
   unsigned char *namebuf = xmalloc (namebufsz);
   unsigned char *undeftab = NULL;
-  struct ht_node_list nl;
+  struct ht_node_list nl = { 0, 0, 0 };
   unsigned char *first, *last;
   unsigned int i;