about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-07-26 23:42:14 +0000
committerUlrich Drepper <drepper@redhat.com>2008-07-26 23:42:14 +0000
commitc4a710b6b00590e2a4d852beea72cd5a69d3a7bb (patch)
treef91461f899ddd7b18d32a68c9ad9d3ba7f3c0981
parent31f3b159e3cb07c2733fd7662da6f1abd689ee3f (diff)
downloadglibc-c4a710b6b00590e2a4d852beea72cd5a69d3a7bb.tar.gz
glibc-c4a710b6b00590e2a4d852beea72cd5a69d3a7bb.tar.xz
glibc-c4a710b6b00590e2a4d852beea72cd5a69d3a7bb.zip
[BZ #6771]
	* libio/fileops.c (_IO_new_file_attach): Preserve errno around
	success call of _IO_SEEKOFF or calls which failed because the
	descriptor is for a pipe.
-rw-r--r--ChangeLog5
-rw-r--r--libio/fileops.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 162bbaee35..df99b84138 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2008-07-26  Ulrich Drepper  <drepper@redhat.com>
 
+	[BZ #6771]
+	* libio/fileops.c (_IO_new_file_attach): Preserve errno around
+	success call of _IO_SEEKOFF or calls which failed because the
+	descriptor is for a pipe.
+
 	* sunrpc/key_call.c (getkeyserv_handle): Use FD_CLOEXEC instead of
 	magic number.
 
diff --git a/libio/fileops.c b/libio/fileops.c
index 95cd2d64c9..f5b256998d 100644
--- a/libio/fileops.c
+++ b/libio/fileops.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1995, 1997-2005, 2006, 2007
+/* Copyright (C) 1993, 1995, 1997-2005, 2006, 2007, 2008
    Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Written by Per Bothner <bothner@cygnus.com>.
@@ -428,9 +428,11 @@ _IO_new_file_attach (fp, fd)
   /* Get the current position of the file. */
   /* We have to do that since that may be junk. */
   fp->_offset = _IO_pos_BAD;
+  int save_errno = errno;
   if (_IO_SEEKOFF (fp, (_IO_off64_t)0, _IO_seek_cur, _IOS_INPUT|_IOS_OUTPUT)
       == _IO_pos_BAD && errno != ESPIPE)
     return NULL;
+  errno = save_errno;
   return fp;
 }
 INTDEF2(_IO_new_file_attach, _IO_file_attach)