* jcf-parse.c (read_class): Initialize `class'.
authorTom Tromey <tromey@redhat.com>
Tue, 20 Mar 2001 22:57:20 +0000 (22:57 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Tue, 20 Mar 2001 22:57:20 +0000 (22:57 +0000)
From-SVN: r40678

gcc/java/ChangeLog
gcc/java/jcf-parse.c

index 3a7cf6f..592d782 100644 (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.
index d47d076..0b3a4b5 100644 (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;