diff options
author | jvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-07 02:43:44 +0000 |
---|---|---|
committer | jvdelisle <jvdelisle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-07 02:43:44 +0000 |
commit | 4184bb268924c30dfce261ecc6f7b4b7c3d8ac97 (patch) | |
tree | 394282fd9f4eadcac2dad6251364a1afe2a41bba /libgfortran | |
parent | 3f5eb54ae5afa33ab9eabfc4ae7fced1cb2259e4 (diff) | |
download | gcc-4184bb268924c30dfce261ecc6f7b4b7c3d8ac97.tar.gz |
2007-11-06 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/33985
* io/transfer.c (finalize_transfer): Revert previous patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129955 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 5 | ||||
-rw-r--r-- | libgfortran/io/transfer.c | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index c64254288d6..3aaa7271637 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2007-11-06 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libfortran/33985 + * io/transfer.c (finalize_transfer): Revert previous patch. + 2007-11-03 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/33985 diff --git a/libgfortran/io/transfer.c b/libgfortran/io/transfer.c index 38bb96bf9dd..4073137da74 100644 --- a/libgfortran/io/transfer.c +++ b/libgfortran/io/transfer.c @@ -591,7 +591,6 @@ write_buf (st_parameter_dt *dtp, void *buf, size_t nbytes) size_t have_written, to_write_subrecord; int short_record; - /* Stream I/O. */ if (is_stream_io (dtp)) @@ -2640,11 +2639,9 @@ finalize_transfer (st_parameter_dt *dtp) if (is_stream_io (dtp)) { if (dtp->u.p.current_unit->flags.form == FORM_FORMATTED) - { - next_record (dtp, 1); - flush (dtp->u.p.current_unit->s); - sfree (dtp->u.p.current_unit->s); - } + next_record (dtp, 1); + flush (dtp->u.p.current_unit->s); + sfree (dtp->u.p.current_unit->s); return; } |