Mercurial > emacs
changeset 37291:83dd2eb5365f
(sys_open): Try to open file without _O_CREAT first, to be
able to write to hidden and system files. Make file handles
non-inheritable.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 10 Apr 2001 12:15:25 +0000 |
parents | 6e6e46d239df |
children | 80082652ed9f |
files | src/w32.c |
diffstat | 1 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/w32.c Tue Apr 10 12:14:49 2001 +0000 +++ b/src/w32.c Tue Apr 10 12:15:25 2001 +0000 @@ -1,5 +1,5 @@ /* Utility and Unix shadow routines for GNU Emacs on the Microsoft W32 API. - Copyright (C) 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 2000, 2001 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -1819,8 +1819,14 @@ int sys_open (const char * path, int oflag, int mode) { - /* Force all file handles to be non-inheritable. */ - return _open (map_w32_filename (path, NULL), oflag | _O_NOINHERIT, mode); + const char* mpath = map_w32_filename (path, NULL); + /* Try to open file without _O_CREAT, to be able to write to hidden + and system files. Force all file handles to be + non-inheritable. */ + int res = _open (mpath, (oflag & ~_O_CREAT) | _O_NOINHERIT, mode); + if (res >= 0) + return res; + return _open (mpath, oflag | _O_NOINHERIT, mode); } int