* jcf-parse.c (read_class): Initialize `class'.

From-SVN: r40678
This commit is contained in:
Tom Tromey 2001-03-20 22:57:20 +00:00 committed by Tom Tromey
parent de83bf663e
commit ddd705d182
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-03-20 Tom Tromey <tromey@redhat.com>
* jcf-parse.c (read_class): Initialize `class'.
2001-03-20 Matt Kraai <kraai@alumni.carnegiemellon.edu>
* jcf_parse.c (jcf_parse): Eliminate unused variable.

View File

@ -549,7 +549,7 @@ read_class (name)
tree name;
{
JCF this_jcf, *jcf;
tree icv, class;
tree icv, class = NULL_TREE;
tree save_current_class = current_class;
const char *save_input_filename = input_filename;
JCF *save_current_jcf = current_jcf;