From: ljrittle Date: Thu, 17 Apr 2003 23:10:17 +0000 (+0000) Subject: * cpppch.c (cpp_valid_state): Unconditionally initialize nl. X-Git-Url: http://git.sourceforge.jp/view?p=pf3gnuchains%2Fgcc-fork.git;a=commitdiff_plain;h=506b1f4e52945ad13be56a21c254349d06875bb0;hp=ed4ead76fec2cd562d2c0d7172aa5289bf3113ae;ds=sidebyside * cpppch.c (cpp_valid_state): Unconditionally initialize nl. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65755 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index df58352d177..ff7bf20500b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-04-07 Loren James Rittle + + * cpppch.c (cpp_valid_state): Unconditionally initialize nl. + 2003-04-17 Kazu Hirata * reload1.c (move2add_last_cc0): New. diff --git a/gcc/cpppch.c b/gcc/cpppch.c index 637160cd1a8..388a7532c11 100644 --- a/gcc/cpppch.c +++ b/gcc/cpppch.c @@ -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;