ntdll: Use the HKCU\Volatile Environment key when generating the initial process environment.

This commit is contained in:
Andrew Nguyen 2009-12-23 11:31:46 -06:00 committed by Alexandre Julliard
parent 10e12c8183
commit 542feda6b8
1 changed files with 10 additions and 0 deletions

View File

@ -417,6 +417,7 @@ static BOOL set_registry_environment(void)
'S','e','s','s','i','o','n',' ','M','a','n','a','g','e','r','\\',
'E','n','v','i','r','o','n','m','e','n','t',0};
static const WCHAR envW[] = {'E','n','v','i','r','o','n','m','e','n','t',0};
static const WCHAR volatile_envW[] = {'V','o','l','a','t','i','l','e',' ','E','n','v','i','r','o','n','m','e','n','t',0};
OBJECT_ATTRIBUTES attr;
UNICODE_STRING nameW;
@ -449,6 +450,15 @@ static BOOL set_registry_environment(void)
set_registry_variables( hkey, REG_EXPAND_SZ );
NtClose( hkey );
}
RtlInitUnicodeString( &nameW, volatile_envW );
if (NtOpenKey( &hkey, KEY_READ, &attr ) == STATUS_SUCCESS)
{
set_registry_variables( hkey, REG_SZ );
set_registry_variables( hkey, REG_EXPAND_SZ );
NtClose( hkey );
}
NtClose( attr.RootDirectory );
return ret;
}