mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 06:32:14 +00:00
[NTOSKRNL]: Count should be initialized to zero. Thanks to MSVC for finding a bug.
svn path=/trunk/; revision=60330
This commit is contained in:
parent
736b50b0db
commit
27fd290e99
1 changed files with 1 additions and 1 deletions
|
@ -2751,7 +2751,7 @@ MmCommitSessionMappedView(IN PVOID MappedBase,
|
|||
IN SIZE_T ViewSize)
|
||||
{
|
||||
ULONG_PTR StartAddress, EndingAddress, Base;
|
||||
ULONG Hash, Count, Size, QuotaCharge;
|
||||
ULONG Hash, Count = 0, Size, QuotaCharge;
|
||||
PMMSESSION Session;
|
||||
PMMPTE LastProtoPte, PointerPte, ProtoPte;
|
||||
PCONTROL_AREA ControlArea;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue