mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
Get correct window station for CSRSS
svn path=/trunk/; revision=19804
This commit is contained in:
parent
ce6fd73528
commit
9c5f726ff9
1 changed files with 6 additions and 5 deletions
|
@ -948,6 +948,7 @@ NtUserOpenDesktop(
|
|||
ACCESS_MASK dwDesiredAccess)
|
||||
{
|
||||
OBJECT_ATTRIBUTES ObjectAttributes;
|
||||
HWINSTA WinSta;
|
||||
PWINSTATION_OBJECT WinStaObject;
|
||||
UNICODE_STRING DesktopName;
|
||||
NTSTATUS Status;
|
||||
|
@ -962,16 +963,16 @@ NtUserOpenDesktop(
|
|||
* qualified desktop name
|
||||
*/
|
||||
|
||||
WinSta = UserGetProcessWindowStation();
|
||||
Status = IntValidateWindowStationHandle(
|
||||
PsGetCurrentProcess()->Win32WindowStation,
|
||||
WinSta,
|
||||
KernelMode,
|
||||
0,
|
||||
&WinStaObject);
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("Failed validation of window station handle (0x%X)\n",
|
||||
PsGetCurrentProcess()->Win32WindowStation);
|
||||
DPRINT1("Failed validation of window station handle (0x%X)\n", WinSta);
|
||||
SetLastNtError(Status);
|
||||
RETURN( 0);
|
||||
}
|
||||
|
@ -986,7 +987,7 @@ NtUserOpenDesktop(
|
|||
|
||||
ObDereferenceObject(WinStaObject);
|
||||
|
||||
DPRINT1("Trying to open desktop (%wZ)\n", &DesktopName);
|
||||
DPRINT("Trying to open desktop (%wZ)\n", &DesktopName);
|
||||
|
||||
/* Initialize ObjectAttributes for the desktop object */
|
||||
InitializeObjectAttributes(
|
||||
|
@ -1000,7 +1001,7 @@ NtUserOpenDesktop(
|
|||
&ObjectAttributes,
|
||||
ExDesktopObjectType,
|
||||
NULL,
|
||||
UserMode,
|
||||
KernelMode,
|
||||
dwDesiredAccess,
|
||||
NULL,
|
||||
(HANDLE*)&Desktop);
|
||||
|
|
Loading…
Reference in a new issue