mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[NTOS:MM] Fix broken ASSERT. CID 701285
This commit is contained in:
parent
71e66c69c1
commit
2ae756a4e5
1 changed files with 1 additions and 1 deletions
|
@ -5490,8 +5490,8 @@ FinalPath:
|
|||
AlreadyDecommitted;
|
||||
|
||||
ASSERT(CommitReduction >= 0);
|
||||
ASSERT(Vad->u.VadFlags.CommitCharge >= CommitReduction);
|
||||
Vad->u.VadFlags.CommitCharge -= CommitReduction;
|
||||
ASSERT(Vad->u.VadFlags.CommitCharge >= 0);
|
||||
|
||||
//
|
||||
// We are done, go to the exit path without freeing the VAD as it remains
|
||||
|
|
Loading…
Reference in a new issue