Author: hbelusca
Date: Fri Sep 2 21:21:00 2016
New Revision: 72537
URL:
http://svn.reactos.org/svn/reactos?rev=72537&view=rev
Log:
[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.
Modified:
trunk/reactos/sdk/include/ndk/rtltypes.h
Modified: trunk/reactos/sdk/include/ndk/rtltypes.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/sdk/include/ndk/rtltypes.h…
==============================================================================
--- trunk/reactos/sdk/include/ndk/rtltypes.h [iso-8859-1] (original)
+++ trunk/reactos/sdk/include/ndk/rtltypes.h [iso-8859-1] Fri Sep 2 21:21:00 2016
@@ -1102,7 +1102,7 @@
ULONG NumberOfEntries;
ULONG NumberOfPseudoTags;
ULONG PseudoTagGranularity;
- ULONG Reserved[4];
+ ULONG Reserved[5];
PRTL_HEAP_TAG Tags;
PRTL_HEAP_ENTRY Entries;
} RTL_HEAP_INFORMATION, *PRTL_HEAP_INFORMATION;