[NTOSKRNL]

Don't use an uninitialized variable in MmArmAccessFault (Alex, please review). Brought to you by MSVC runtime checks.

svn path=/trunk/; revision=64757
This commit is contained in:
Timo Kreuzer 2014-10-15 22:03:50 +00:00
parent 911faa3a6f
commit 75c6300b37

View file

@ -1511,7 +1511,7 @@ MmArmAccessFault(IN BOOLEAN StoreInstruction,
NTSTATUS Status;
PMMSUPPORT WorkingSet;
ULONG ProtectionCode;
PMMVAD Vad;
PMMVAD Vad = NULL;
PFN_NUMBER PageFrameIndex;
ULONG Color;
BOOLEAN IsSessionAddress;