mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[WIN32K]
Fix return value of IntDesktopOkToClose, spotted by Cameron. svn path=/trunk/; revision=53213
This commit is contained in:
parent
99329a8c0d
commit
d292220a34
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ IntDesktopOkToClose(PWIN32_OKAYTOCLOSEMETHOD_PARAMETERS Parameters)
|
|||
if( pti == NULL)
|
||||
{
|
||||
/* This happens when we leak desktop handles */
|
||||
return TRUE;
|
||||
return STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
/* Do not allow the current desktop or the initial desktop to be closed */
|
||||
|
|
Loading…
Reference in a new issue