parse.y (yyerror): `msg' can be null, don't use it in that case.

2000-04-19  Alexandre Petit-Bianco  <apbianco@cygnus.com>

	* parse.y (yyerror): `msg' can be null, don't use it in that case.

From-SVN: r33270
This commit is contained in:
Alexandre Petit-Bianco 2000-04-20 02:52:26 +00:00 committed by Alexandre Petit-Bianco
parent 5186142b90
commit 807bc1db3d
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2000-04-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
* parse.y (yyerror): `msg' can be null, don't use it in that case.
2000-04-19 Tom Tromey <tromey@cygnus.com>
* gjavah.c (cxx_keyword_subst): Avoid potential infinite loop.

View File

@ -5630,7 +5630,7 @@ yyerror (msg)
else
java_error_count++;
if (elc.col == 0 && msg[1] == ';')
if (elc.col == 0 && msg && msg[1] == ';')
{
elc.col = ctxp->p_line->char_col-1;
elc.line = ctxp->p_line->lineno;

View File

@ -2932,7 +2932,7 @@ yyerror (msg)
else
java_error_count++;
if (elc.col == 0 && msg[1] == ';')
if (elc.col == 0 && msg && msg[1] == ';')
{
elc.col = ctxp->p_line->char_col-1;
elc.line = ctxp->p_line->lineno;