From 8f1b88d61758fd5bd7c648d18994bdcc4489a35e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Fri, 2 Sep 2016 21:21:00 +0000 Subject: [PATCH 1/1] [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 --- reactos/sdk/include/ndk/rtltypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/sdk/include/ndk/rtltypes.h b/reactos/sdk/include/ndk/rtltypes.h index c33aee47498..ad0702c7395 100644 --- a/reactos/sdk/include/ndk/rtltypes.h +++ b/reactos/sdk/include/ndk/rtltypes.h @@ -1102,7 +1102,7 @@ typedef struct _RTL_HEAP_INFORMATION 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; -- 2.17.1