[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:
Hermès Bélusca-Maïto 2016-09-02 21:21:00 +00:00
parent c986fba6d1
commit 8f1b88d617

View file

@ -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;