Commit acbedd7c by Alexandre Petit-Bianco Committed by Alexandre Petit-Bianco

parse-scan.y (pop_class_context): Reset `inner_qualifier_length' when negative…

parse-scan.y (pop_class_context): Reset `inner_qualifier_length' when negative *before* using it as an array index.

2000-03-28  Alexandre Petit-Bianco  <apbianco@cygnus.com>

	* parse-scan.y (pop_class_context): Reset `inner_qualifier_length'
	when negative *before* using it as an array index.
	* ChangeLog: Fixed typo.

(Fixes the following bogus patch:
 http://gcc.gnu.org/ml/gcc-patches/2000-03/msg00937.html)

From-SVN: r32793
parent 29a72a4f
2000-03-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse-scan.y (pop_class_context): Reset `inner_qualifier_length'
when negative *before* using it as an array index.
* ChangeLog: Fixed typo.
2000-03-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse-scan.y (pop_class_context): Reset `inner_qualifier_length'
to 0 when it reaches -1.
2000-03-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
* jcf-parse.c (get_constant): Properly cast `num' during the
invocation of `add_double call'.
invocation of `add_double'.
* jcf-write.c (push_long_const): Properly cast `lo' before
comparing it to short bounds.
* parse-scan.y (interface_declaration:): Rule re-arrange so that
......
......@@ -2495,9 +2495,9 @@ pop_class_context ()
&& inner_qualifier [inner_qualifier_length-1] != '$')
;
inner_qualifier = xrealloc (inner_qualifier, inner_qualifier_length+1);
inner_qualifier [inner_qualifier_length] = '\0';
if (inner_qualifier_length == -1)
inner_qualifier_length = 0;
inner_qualifier [inner_qualifier_length] = '\0';
}
/* Actions defined here */
......
......@@ -1144,9 +1144,9 @@ pop_class_context ()
&& inner_qualifier [inner_qualifier_length-1] != '$')
;
inner_qualifier = xrealloc (inner_qualifier, inner_qualifier_length+1);
inner_qualifier [inner_qualifier_length] = '\0';
if (inner_qualifier_length == -1)
inner_qualifier_length = 0;
inner_qualifier [inner_qualifier_length] = '\0';
}
/* Actions defined here */
......
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