mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
(_IO_new_file_fopen): Recognize 'e' flag and set O_CLOEXEC is needed.
This commit is contained in:
@ -320,6 +320,11 @@ _IO_new_file_fopen (fp, filename, mode, is32not64)
|
||||
case 'c':
|
||||
fp->_flags2 |= _IO_FLAGS2_NOTCANCEL;
|
||||
break;
|
||||
#ifdef O_CLOEXEC
|
||||
case 'e':
|
||||
oflags |= O_CLOEXEC;
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
/* Ignore. */
|
||||
continue;
|
||||
|
Reference in New Issue
Block a user