diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2003-04-17 23:10:17 +0000 |
---|---|---|
committer | Loren J. Rittle <ljrittle@gcc.gnu.org> | 2003-04-17 23:10:17 +0000 |
commit | 368018184c55e6e262dc1acfe8b21a674b170e75 (patch) | |
tree | f9c3313efa656cfae412c6524757fcefb5f84da7 /gcc/cpppch.c | |
parent | a211395bbba9f4df621d741c43b56d851f123607 (diff) | |
download | gcc-368018184c55e6e262dc1acfe8b21a674b170e75.zip gcc-368018184c55e6e262dc1acfe8b21a674b170e75.tar.gz gcc-368018184c55e6e262dc1acfe8b21a674b170e75.tar.bz2 |
* cpppch.c (cpp_valid_state): Unconditionally initialize nl.
From-SVN: r65755
Diffstat (limited to 'gcc/cpppch.c')
-rw-r--r-- | gcc/cpppch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpppch.c b/gcc/cpppch.c index 637160c..388a753 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; |