From: Loren J. Rittle Date: Thu, 17 Apr 2003 23:10:17 +0000 (+0000) Subject: * cpppch.c (cpp_valid_state): Unconditionally initialize nl. X-Git-Tag: releases/gcc-3.4.0~7204 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=368018184c55e6e262dc1acfe8b21a674b170e75;p=thirdparty%2Fgcc.git * cpppch.c (cpp_valid_state): Unconditionally initialize nl. From-SVN: r65755 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index df58352d177b..ff7bf20500b0 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 637160cd1a89..388a7532c11a 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;