mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +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,
|
*ViewSize,
|
||||||
Protect,
|
Protect,
|
||||||
ViewOffset,
|
ViewOffset,
|
||||||
(AllocationType & MEM_TOP_DOWN));
|
(AllocationType & MEM_TOP_DOWN) == MEM_TOP_DOWN);
|
||||||
MmUnlockSectionSegment(Section->Segment);
|
MmUnlockSectionSegment(Section->Segment);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue