mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Fixed the check for the MEM_TOP_DOWN flag in MmMapViewOfSection.
svn path=/trunk/; revision=18882
This commit is contained in:
parent
34e6e97b69
commit
c6d9a617be
1 changed files with 1 additions and 1 deletions
|
@ -4520,7 +4520,7 @@ MmMapViewOfSection(IN PVOID SectionObject,
|
|||
*ViewSize,
|
||||
Protect,
|
||||
ViewOffset,
|
||||
(AllocationType & MEM_TOP_DOWN));
|
||||
(AllocationType & MEM_TOP_DOWN) == MEM_TOP_DOWN);
|
||||
MmUnlockSectionSegment(Section->Segment);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue