mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 12:40:33 +00:00
[NTOSKRNL]
* Fix logically dead code block. CID 731331. CORE-6681 svn path=/trunk/; revision=60609
This commit is contained in:
parent
34110663e7
commit
09b7cedebe
1 changed files with 4 additions and 4 deletions
|
@ -211,10 +211,10 @@ ExpWin32kInit(VOID)
|
|||
ObjectTypeInitializer.OkayToCloseProcedure = ExpDesktopOkToClose;
|
||||
ObjectTypeInitializer.OpenProcedure = ExpDesktopOpen;
|
||||
ObjectTypeInitializer.CloseProcedure = ExpDesktopClose;
|
||||
ObCreateObjectType(&Name,
|
||||
&ObjectTypeInitializer,
|
||||
NULL,
|
||||
&ExDesktopObjectType);
|
||||
Status = ObCreateObjectType(&Name,
|
||||
&ObjectTypeInitializer,
|
||||
NULL,
|
||||
&ExDesktopObjectType);
|
||||
if (!NT_SUCCESS(Status)) return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue