mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[NTOS:MM] Fix ViewSize parameter passed to MiInsertVadEx() from MiCreatePebOrTeb()
The size is in bytes, not in pages! On x86 we got away with it, since PEB and TEB require only a single page and the 1 passed to MiInsertVadEx() was aligned up to PAGE_SIZE. On x64 this doesn't work, since the size is 2 pages.
This commit is contained in:
parent
e8f8536f9b
commit
e49ef251b7
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ MiCreatePebOrTeb(IN PEPROCESS Process,
|
|||
*BaseAddress = 0;
|
||||
Status = MiInsertVadEx((PMMVAD)Vad,
|
||||
BaseAddress,
|
||||
BYTES_TO_PAGES(Size),
|
||||
Size,
|
||||
HighestAddress,
|
||||
PAGE_SIZE,
|
||||
MEM_TOP_DOWN);
|
||||
|
|
Loading…
Reference in a new issue