diff options
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 6 | ||||
-rw-r--r-- | libgfortran/io/unix.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index fa866a1091f..eded92ede0b 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2005-05-11 Bud Davis <bdavis@gfortran.org> + + PR fortran/19478 + * io/unix.c (fd_truncate): update positions when ftruncate + fails (like writing to /dev/null). + 2005-05-10 Francois-Xavier Coudert <coudert@clipper.ens.fr> PR libfortran/21471 diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c index 865eb68caf8..92eea53ee5b 100644 --- a/libgfortran/io/unix.c +++ b/libgfortran/io/unix.c @@ -515,13 +515,15 @@ fd_truncate (unix_stream * s) #ifdef HAVE_FTRUNCATE if (ftruncate (s->fd, s->logical_offset)) - return FAILURE; #else #ifdef HAVE_CHSIZE if (chsize (s->fd, s->logical_offset)) - return FAILURE; #endif #endif + { + s->physical_offset = s->file_length = 0; + return FAILURE; + } s->physical_offset = s->file_length = s->logical_offset; |