mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 04:13:35 +00:00
[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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user