Commit 36801818 by Loren J. Rittle Committed by Loren J. Rittle

* cpppch.c (cpp_valid_state): Unconditionally initialize nl.

From-SVN: r65755
parent a211395b
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> 2003-04-17 Kazu Hirata <kazu@cs.umass.edu>
* reload1.c (move2add_last_cc0): New. * reload1.c (move2add_last_cc0): New.
......
...@@ -455,7 +455,7 @@ cpp_valid_state (r, name, fd) ...@@ -455,7 +455,7 @@ cpp_valid_state (r, name, fd)
size_t namebufsz = 256; size_t namebufsz = 256;
unsigned char *namebuf = xmalloc (namebufsz); unsigned char *namebuf = xmalloc (namebufsz);
unsigned char *undeftab = NULL; unsigned char *undeftab = NULL;
struct ht_node_list nl; struct ht_node_list nl = { 0, 0, 0 };
unsigned char *first, *last; unsigned char *first, *last;
unsigned int i; unsigned int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment