mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[WINLOGON] Let Winlogon assign security to desktop when a user logs in now
This commit is contained in:
parent
aa815e1cfa
commit
07227562c0
1 changed files with 0 additions and 9 deletions
|
@ -1446,21 +1446,12 @@ AllowAccessOnSession(
|
|||
goto Quit;
|
||||
}
|
||||
|
||||
/*
|
||||
* FIXME: Desktop security management is broken. The application desktop gets created
|
||||
* with CreateDesktopW() API call with an initial and defined security descriptor for it yet
|
||||
* when we are giving access to the logged in user, SetUserObjectSecurity() API call fails to set
|
||||
* new security because the desktop in question has no prior security descriptor (when it's
|
||||
* been assigned even before!!!). This chunk of code must be enabled when this gets fixed.
|
||||
*/
|
||||
#if 0
|
||||
/* Allow application desktop access to this user within this session */
|
||||
if (!AllowDesktopAccessToUser(Session->ApplicationDesktop, LogonSid))
|
||||
{
|
||||
ERR("AllowAccessOnSession(): Failed to allow application desktop access to the logon user!\n");
|
||||
goto Quit;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Get the length of this logon SID */
|
||||
SidLength = GetLengthSid(LogonSid);
|
||||
|
|
Loading…
Reference in a new issue