diff options
Diffstat (limited to 'libio')
-rw-r--r-- | libio/freopen.c | 3 | ||||
-rw-r--r-- | libio/freopen64.c | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libio/freopen.c b/libio/freopen.c index 38df848272..162e835956 100644 --- a/libio/freopen.c +++ b/libio/freopen.c @@ -51,6 +51,9 @@ freopen (filename, mode, fp) else #endif result = _IO_freopen (filename, mode, fp); + if (result != NULL) + /* unbound stream orientation */ + result->_mode = 0; _IO_funlockfile (fp); _IO_cleanup_region_end (0); return result; 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; |