mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 16:22:58 +00:00
[NTOS/EX]
- ExInitializeZone: Don't add to an uninitialized TotalSegmentSize value, set it instead. svn path=/trunk/; revision=59493
This commit is contained in:
parent
5846967dd0
commit
30d0129f75
1 changed files with 2 additions and 2 deletions
|
@ -147,8 +147,8 @@ ExInitializeZone(PZONE_HEADER Zone,
|
||||||
Entry += Zone->BlockSize;
|
Entry += Zone->BlockSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Update Segment Size */
|
/* Set Segment Size */
|
||||||
Zone->TotalSegmentSize += i;
|
Zone->TotalSegmentSize = i;
|
||||||
|
|
||||||
/* Return success */
|
/* Return success */
|
||||||
return STATUS_SUCCESS;
|
return STATUS_SUCCESS;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue