mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-15 02:49:35 +08:00
re PR libfortran/22423 (Warnings when building libgfortran)
2006-05-19 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libgfortran/22423 * io/transfer.c (read_block): Return NULL instead of nothing. From-SVN: r113923
This commit is contained in:
parent
a635db3deb
commit
8bf6519618
@ -1,3 +1,8 @@
|
||||
2006-05-19 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libgfortran/22423
|
||||
* io/transfer.c (read_block): Return NULL instead of nothing.
|
||||
|
||||
2006-05-16 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libgfortran/27575
|
||||
|
@ -276,7 +276,7 @@ read_block (st_parameter_dt *dtp, int *length)
|
||||
{
|
||||
dtp->u.p.current_unit->endfile = AT_ENDFILE;
|
||||
generate_error (&dtp->common, ERROR_END, NULL);
|
||||
return;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
*length = dtp->u.p.current_unit->bytes_left;
|
||||
|
Loading…
Reference in New Issue
Block a user