mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[BOOTLIB]
- Avoid an uninitialized variable in BlpDisplayReinitialize. Patch by Victor Martinez Calvo. CID 1363648. CORE-11692 #resolve svn path=/trunk/; revision=74184
This commit is contained in:
parent
e17745ee73
commit
648f8eb5ff
1 changed files with 1 additions and 1 deletions
|
@ -547,7 +547,7 @@ BlpDisplayReinitialize (
|
||||||
VOID
|
VOID
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status = STATUS_SUCCESS;
|
||||||
PBL_TEXT_CONSOLE TextConsole;
|
PBL_TEXT_CONSOLE TextConsole;
|
||||||
PBL_INPUT_CONSOLE InputConsole;
|
PBL_INPUT_CONSOLE InputConsole;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue