mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-25 11:54:01 +08:00
re PR libfortran/43320 (200.sixtrack fails setup)
2010-03-10 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/43320 * io/transfer.c (next_record_r): Add hit_eof based on item_count condition. From-SVN: r157377
This commit is contained in:
parent
78a50f698f
commit
b7137299f1
@ -1,3 +1,9 @@
|
||||
2010-03-10 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libfortran/43320
|
||||
* io/transfer.c (next_record_r): Add hit_eof based on item_count
|
||||
condition.
|
||||
|
||||
2010-03-09 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libfortran/43265
|
||||
|
@ -2810,6 +2810,8 @@ next_record_r (st_parameter_dt *dtp)
|
||||
{
|
||||
if (errno != 0)
|
||||
generate_error (&dtp->common, LIBERROR_OS, NULL);
|
||||
else if (dtp->u.p.item_count == 1)
|
||||
hit_eof (dtp);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user