mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[NDK]: Fix size of reserved member of the RTL_HEAP_INFORMATION structure, signaled by https://github.com/subTee/native-nt-toolkit/issues/5 and confirmed by Process Hacker headers.
svn path=/trunk/; revision=72537
This commit is contained in:
parent
c986fba6d1
commit
8f1b88d617
1 changed files with 1 additions and 1 deletions
|
@ -1102,7 +1102,7 @@ typedef struct _RTL_HEAP_INFORMATION
|
||||||
ULONG NumberOfEntries;
|
ULONG NumberOfEntries;
|
||||||
ULONG NumberOfPseudoTags;
|
ULONG NumberOfPseudoTags;
|
||||||
ULONG PseudoTagGranularity;
|
ULONG PseudoTagGranularity;
|
||||||
ULONG Reserved[4];
|
ULONG Reserved[5];
|
||||||
PRTL_HEAP_TAG Tags;
|
PRTL_HEAP_TAG Tags;
|
||||||
PRTL_HEAP_ENTRY Entries;
|
PRTL_HEAP_ENTRY Entries;
|
||||||
} RTL_HEAP_INFORMATION, *PRTL_HEAP_INFORMATION;
|
} RTL_HEAP_INFORMATION, *PRTL_HEAP_INFORMATION;
|
||||||
|
|
Loading…
Reference in a new issue