mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 20:51:45 +08:00
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:
parent
5186142b90
commit
807bc1db3d
@ -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.
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user