From: Amine Khaldi Date: Wed, 13 Jul 2016 09:08:34 +0000 (+0000) Subject: [BOOTLIB] Remove stray semicolon from a condition in ConsoleCreateLocalInputConsole... X-Git-Tag: ReactOS-0.4.2~94 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=d90292f3867f5758dc489c9af81667cc4b55dae3;ds=inline [BOOTLIB] Remove stray semicolon from a condition in ConsoleCreateLocalInputConsole(). Patch by Victor for CID 1363701. CORE-11588 svn path=/trunk/; revision=71919 --- diff --git a/reactos/boot/environ/lib/io/display/textcons.c b/reactos/boot/environ/lib/io/display/textcons.c index 10f3defb3a6..abf08f90d29 100644 --- a/reactos/boot/environ/lib/io/display/textcons.c +++ b/reactos/boot/environ/lib/io/display/textcons.c @@ -256,7 +256,7 @@ ConsoleCreateLocalInputConsole ( /* Construct it */ Status = ConsoleInputBaseConstruct(InputConsole); - if (!NT_SUCCESS(Status)); + if (!NT_SUCCESS(Status)) { /* Tear down on failure */ BlMmFreeHeap(InputConsole); @@ -267,4 +267,4 @@ ConsoleCreateLocalInputConsole ( InputConsole->Callbacks = &ConsoleInputLocalVtbl; DspLocalInputConsole = InputConsole; return STATUS_SUCCESS; -} \ No newline at end of file +}