about summary refs log tree commit diff
path: root/libio/freopen64.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-11-16 18:20:27 +0000
committerUlrich Drepper <drepper@redhat.com>2000-11-16 18:20:27 +0000
commit3b1de3ba9e0f7bfb8f33b8507fc6d8aaf3539bc5 (patch)
tree63d2147c4943e97cfca073480b34507823b2734f /libio/freopen64.c
parent40306912c9451bdebb5850c97c4d6bf25bfc83cb (diff)
downloadglibc-3b1de3ba9e0f7bfb8f33b8507fc6d8aaf3539bc5.tar.gz
glibc-3b1de3ba9e0f7bfb8f33b8507fc6d8aaf3539bc5.tar.xz
glibc-3b1de3ba9e0f7bfb8f33b8507fc6d8aaf3539bc5.zip
Update.
2000-11-16  Ulrich Drepper  <drepper@redhat.com>

	* libio/freopen.c (freopen): Reset _mode after succesful
	reopening.
	* libio/freopen64.c (freopen64): Likewise.
	Patch by Yoshito Kawada <KAWADA@jp.ibm.com>.
Diffstat (limited to 'libio/freopen64.c')
-rw-r--r--libio/freopen64.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libio/freopen64.c b/libio/freopen64.c
index c5216317a2..8a104c6080 100644
--- a/libio/freopen64.c
+++ b/libio/freopen64.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1993,1995,1996,1997,1998,2000 Free Software Foundation, Inc.
    This file is part of the GNU IO Library.
 
    This library is free software; you can redistribute it and/or
@@ -40,6 +40,9 @@ freopen64 (filename, mode, fp)
   _IO_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp);
   _IO_flockfile (fp);
   result = _IO_freopen64 (filename, mode, fp);
+  if (result != NULL)
+    /* unbound stream orientation */
+    result->_mode = 0;
   _IO_funlockfile (fp);
   _IO_cleanup_region_end (0);
   return result;