mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-30 11:00:41 +08:00
* spawn.cc (spawn_guts): Enable appropriate privilege before
loading user's registry hive.
This commit is contained in:
parent
4acf3edf6a
commit
7da232abd7
@ -1,3 +1,8 @@
|
||||
2001-08-14 Egor Duda <deo@logos-m.ru>
|
||||
|
||||
* spawn.cc (spawn_guts): Enable appropriate privilege before
|
||||
loading user's registry hive.
|
||||
|
||||
Mon Aug 13 22:34:00 2001 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler.cc (fhandler_base::fcntl): Use new O_NONBLOCK_MASK define.
|
||||
|
@ -631,6 +631,13 @@ skip_arg_parsing:
|
||||
&& cygheap->user.token != INVALID_HANDLE_VALUE)
|
||||
RevertToSelf ();
|
||||
|
||||
static BOOL first_time = TRUE;
|
||||
if (first_time)
|
||||
{
|
||||
set_process_privilege (SE_RESTORE_NAME);
|
||||
first_time = FALSE;
|
||||
}
|
||||
|
||||
/* Load users registry hive. */
|
||||
load_registry_hive (sid);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user