mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 12:43:05 +00:00
Fix compile problem when compiling with DBG
svn path=/trunk/; revision=7361
This commit is contained in:
parent
633f796e40
commit
16ed415455
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ NTSTATUS MmCreateMemoryArea(PEPROCESS Process,
|
|||
if (BoundaryAddressMultiple.QuadPart != 0)
|
||||
{
|
||||
EndAddress = *BaseAddress + tmpLength-1;
|
||||
assert((*BaseAddress/BoundaryAddressMultiple) == (EndAddress/BoundaryAddressMultiple));
|
||||
assert(((DWORD_PTR)*BaseAddress/BoundaryAddressMultiple.QuadPart) == ((DWORD_PTR)EndAddress/BoundaryAddressMultiple.QuadPart));
|
||||
}
|
||||
|
||||
if (MmOpenMemoryAreaByRegion(AddressSpace,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue