mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
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>.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
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>.
|
||||||
|
|
||||||
2000-11-15 H.J. Lu <hjl@gnu.org>
|
2000-11-15 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
* sysdeps/generic/ldsodefs.h (DL_DT_INIT_ADDRESS): Defined if
|
* sysdeps/generic/ldsodefs.h (DL_DT_INIT_ADDRESS): Defined if
|
||||||
|
@ -51,6 +51,9 @@ freopen (filename, mode, fp)
|
|||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
result = _IO_freopen (filename, mode, fp);
|
result = _IO_freopen (filename, mode, fp);
|
||||||
|
if (result != NULL)
|
||||||
|
/* unbound stream orientation */
|
||||||
|
result->_mode = 0;
|
||||||
_IO_funlockfile (fp);
|
_IO_funlockfile (fp);
|
||||||
_IO_cleanup_region_end (0);
|
_IO_cleanup_region_end (0);
|
||||||
return result;
|
return result;
|
||||||
|
@ -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 file is part of the GNU IO Library.
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
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_cleanup_region_start ((void (*) __P ((void *))) _IO_funlockfile, fp);
|
||||||
_IO_flockfile (fp);
|
_IO_flockfile (fp);
|
||||||
result = _IO_freopen64 (filename, mode, fp);
|
result = _IO_freopen64 (filename, mode, fp);
|
||||||
|
if (result != NULL)
|
||||||
|
/* unbound stream orientation */
|
||||||
|
result->_mode = 0;
|
||||||
_IO_funlockfile (fp);
|
_IO_funlockfile (fp);
|
||||||
_IO_cleanup_region_end (0);
|
_IO_cleanup_region_end (0);
|
||||||
return result;
|
return result;
|
||||||
|
Reference in New Issue
Block a user