mirror of
https://github.com/reactos/reactos.git
synced 2025-06-10 20:34:59 +00:00
[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:
parent
911faa3a6f
commit
75c6300b37
1 changed files with 1 additions and 1 deletions
|
@ -1511,7 +1511,7 @@ MmArmAccessFault(IN BOOLEAN StoreInstruction,
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
PMMSUPPORT WorkingSet;
|
PMMSUPPORT WorkingSet;
|
||||||
ULONG ProtectionCode;
|
ULONG ProtectionCode;
|
||||||
PMMVAD Vad;
|
PMMVAD Vad = NULL;
|
||||||
PFN_NUMBER PageFrameIndex;
|
PFN_NUMBER PageFrameIndex;
|
||||||
ULONG Color;
|
ULONG Color;
|
||||||
BOOLEAN IsSessionAddress;
|
BOOLEAN IsSessionAddress;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue