From 09ad57ec8fa24e40b2364d1d67218c65acedaf4d Mon Sep 17 00:00:00 2001 From: Janne Blomqvist Date: Sat, 11 Jun 2011 13:52:18 +0300 Subject: Return error when trying to seek a non-seekable buffered file From-SVN: r174947 --- libgfortran/io/unix.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'libgfortran/io/unix.c') diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c index e3ae607..25cb559 100644 --- a/libgfortran/io/unix.c +++ b/libgfortran/io/unix.c @@ -560,6 +560,11 @@ buf_write (unix_stream * s, const void * buf, ssize_t nbyte) static gfc_offset buf_seek (unix_stream * s, gfc_offset offset, int whence) { + if (s->file_length == -1) + { + errno = ESPIPE; + return -1; + } switch (whence) { case SEEK_SET: @@ -585,7 +590,7 @@ buf_seek (unix_stream * s, gfc_offset offset, int whence) static gfc_offset buf_tell (unix_stream * s) { - return s->logical_offset; + return buf_seek (s, 0, SEEK_CUR); } static int -- cgit v1.1