mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[SYSSETUP] Fix an issue that may be caused by a missing security settings file
Found by Serge Gautherie
This commit is contained in:
parent
67e45c41ee
commit
249dc97165
1 changed files with 6 additions and 9 deletions
|
@ -589,7 +589,7 @@ ApplyRegistryValues(
|
|||
VOID
|
||||
InstallSecurity(VOID)
|
||||
{
|
||||
HINF hSecurityInf = INVALID_HANDLE_VALUE;
|
||||
HINF hSecurityInf;
|
||||
PWSTR pszSecurityInf;
|
||||
|
||||
// if (IsServer())
|
||||
|
@ -603,17 +603,14 @@ InstallSecurity(VOID)
|
|||
NULL,
|
||||
INF_STYLE_WIN4,
|
||||
NULL);
|
||||
if (hSecurityInf == INVALID_HANDLE_VALUE)
|
||||
if (hSecurityInf != INVALID_HANDLE_VALUE)
|
||||
{
|
||||
DPRINT1("SetupOpenInfFileW failed\n");
|
||||
return;
|
||||
InstallPrivileges(hSecurityInf);
|
||||
ApplyRegistryValues(hSecurityInf);
|
||||
|
||||
SetupCloseInfFile(hSecurityInf);
|
||||
}
|
||||
|
||||
InstallPrivileges(hSecurityInf);
|
||||
ApplyRegistryValues(hSecurityInf);
|
||||
|
||||
SetupCloseInfFile(hSecurityInf);
|
||||
|
||||
/* Hack */
|
||||
SetPrimaryDomain(L"WORKGROUP", NULL);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue