[FREELDR]

- Fix heap code for 64 bit (before someone asks: the reason to use ULONG_PTR instead of ULONG is warning free code without casts)

svn path=/trunk/; revision=55675
This commit is contained in:
Timo Kreuzer 2012-02-17 17:22:14 +00:00
parent 48cf74fcca
commit 69172a1b38

View file

@ -39,8 +39,8 @@ PVOID FrLdrTempHeap;
typedef struct _BLOCK_DATA
{
ULONG_PTR Flink;
ULONG_PTR Blink;
ULONG_PTR Flink:32;
ULONG_PTR Blink:32;
} BLOCK_DATA, *PBLOCK_DATA;
typedef struct _HEAP_BLOCK