[BOOTLIB]

- Correctly check ConsoleRemoteConstruct return value in ConsoleCreateRemoteConsole. Patch by Kudratov Olimjon.
CORE-10357 #resolve

svn path=/trunk/; revision=69592
This commit is contained in:
Thomas Faber 2015-10-18 10:20:56 +00:00
parent 8da82fb0ce
commit 1920e426e7

View file

@ -44,7 +44,7 @@ ConsoleCreateRemoteConsole (
/* Construct it */
Status = ConsoleRemoteConstruct(RemoteConsole);
if (!NT_SUCCESS(Status));
if (!NT_SUCCESS(Status))
{
/* Failed to construct it, delete it */
BlMmFreeHeap(RemoteConsole);