mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-15 18:31:04 +08:00
list_read.c (finish_separator): Initialize variable.
2013-04-15 Tobias Burnus <burnus@net-b.de> * list_read.c (finish_separator): Initialize variable. From-SVN: r197969
This commit is contained in:
parent
83584eab1b
commit
95bd9622ab
libgfortran
@ -1,3 +1,7 @@
|
||||
2013-04-15 Tobias Burnus <burnus@net-b.de>
|
||||
|
||||
* list_read.c (finish_separator): Initialize variable.
|
||||
|
||||
2013-04-15 Janne Blomqvist <jb@gcc.gnu.org>
|
||||
|
||||
PR fortran/56919
|
||||
|
@ -393,7 +393,7 @@ static int
|
||||
finish_separator (st_parameter_dt *dtp)
|
||||
{
|
||||
int c;
|
||||
int err;
|
||||
int err = LIBERROR_OK;
|
||||
|
||||
restart:
|
||||
eat_spaces (dtp);
|
||||
@ -433,7 +433,7 @@ finish_separator (st_parameter_dt *dtp)
|
||||
return err;
|
||||
goto restart;
|
||||
}
|
||||
|
||||
/* Fall through. */
|
||||
default:
|
||||
unget_char (dtp, c);
|
||||
break;
|
||||
@ -2788,6 +2788,7 @@ nml_get_obj_data (st_parameter_dt *dtp, namelist_info **pprev_nl,
|
||||
"namelist not terminated with / or &end");
|
||||
goto nml_err_ret;
|
||||
}
|
||||
/* Fall through. */
|
||||
case '/':
|
||||
dtp->u.p.input_complete = 1;
|
||||
return true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user