* spawn.cc (spawn_guts): Enable appropriate privilege before

loading user's registry hive.
This commit is contained in:
Egor Duda
2001-08-14 14:57:44 +00:00
parent 4acf3edf6a
commit 7da232abd7
2 changed files with 12 additions and 0 deletions

View File

@ -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);