diff options
author | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2005-12-28 07:20:19 +0000 |
---|---|---|
committer | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2005-12-28 07:20:19 +0000 |
commit | b5918dea9c512bd13382d3fce512b725fe78aa24 (patch) | |
tree | 32753959ec36097f3b0ead36346d11877aad5cfd /libgfortran | |
parent | f55be19d7b27405c61dc43e9e2f79e3bc34d5175 (diff) | |
download | gcc-b5918dea9c512bd13382d3fce512b725fe78aa24.zip gcc-b5918dea9c512bd13382d3fce512b725fe78aa24.tar.gz gcc-b5918dea9c512bd13382d3fce512b725fe78aa24.tar.bz2 |
re PR libfortran/25550 (file data corrupted after reading end of file)
2005-12-28 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libgfortran/25550
* io/file_pos.c (st_rewind): Reset bytes left so no error occurs in
next_record_r.
From-SVN: r109101
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 6 | ||||
-rw-r--r-- | libgfortran/io/file_pos.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 65be7e7..c9fdb6b 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,5 +1,11 @@ 2005-12-28 Jerry DeLisle <jvdelisle@gcc.gnu.org> + PR libgfortran/25550 + * io/file_pos.c (st_rewind): Reset bytes left so no error occurs in + next_record_r. + +2005-12-28 Jerry DeLisle <jvdelisle@gcc.gnu.org> + PR libgfortran/25419 * io/list_read.c (list_formatted_read_scalar): Allow comma to return a null value (default). diff --git a/libgfortran/io/file_pos.c b/libgfortran/io/file_pos.c index 3d7dd9a..d9ac1e7 100644 --- a/libgfortran/io/file_pos.c +++ b/libgfortran/io/file_pos.c @@ -255,6 +255,7 @@ st_rewind (st_parameter_filepos *fpp) u->endfile = NO_ENDFILE; u->current_record = 0; + u->bytes_left = 0; test_endfile (u); } /* Update position for INQUIRE. */ |