[SYSSETUP] Fix an issue that may be caused by a missing security settings file

Found by Serge Gautherie
This commit is contained in:
Eric Kohl 2018-05-29 12:49:24 +02:00
parent 67e45c41ee
commit 249dc97165

View file

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