mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:05:41 +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;
|
||||
}
|
||||
|
||||
/* Update Segment Size */
|
||||
Zone->TotalSegmentSize += i;
|
||||
/* Set Segment Size */
|
||||
Zone->TotalSegmentSize = i;
|
||||
|
||||
/* Return success */
|
||||
return STATUS_SUCCESS;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue