* Fix uninitialized scalar variable. CID 1223183.
CORE-7975

svn path=/trunk/; revision=63655
This commit is contained in:
Amine Khaldi 2014-06-28 13:19:39 +00:00
parent 8a6f50e496
commit 06c5c37b0a

View file

@ -47,7 +47,7 @@ static VOID WINAPI DosSystemBop(LPWORD Stack)
{
case 0x11: // Load the DOS kernel
{
BOOLEAN Success;
BOOLEAN Success = FALSE;
HANDLE hDosKernel;
ULONG ulDosKernelSize = 0;