From c4755a91ea781e9d1eabc5c743d21f556eb58342 Mon Sep 17 00:00:00 2001 From: jb Date: Fri, 16 May 2008 17:37:30 +0000 Subject: [PATCH] Fix fallout from part 1 of PR25561 patch. 2008-05-16 Janne Blomqvist PR libfortran/35632 * io/open.c (new_unit): Set stream position to correct value. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@135432 138bc75d-0d04-0410-961f-82ee72b054a4 --- libgfortran/ChangeLog | 5 +++++ libgfortran/io/open.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index c363ecfd171..f83115ec0ce 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,8 @@ +2008-05-16 Janne Blomqvist + + PR libfortran/35632 + * io/open.c (new_unit): Set stream position to correct value. + 2008-05-15 Janne Blomqvist PR libfortran/25561 diff --git a/libgfortran/io/open.c b/libgfortran/io/open.c index e16386cabd7..d95eccbc12d 100644 --- a/libgfortran/io/open.c +++ b/libgfortran/io/open.c @@ -611,7 +611,7 @@ new_unit (st_parameter_open *opp, gfc_unit *u, unit_flags * flags) { u->maxrec = max_offset; u->recl = 1; - u->strm_pos = 1; + u->strm_pos = file_position (u->s) + 1; } memmove (u->file, opp->file, opp->file_len); -- 2.11.4.GIT