1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

Fixed the MemoryNode padding, which was short of a 32 bit word.

This commit is contained in:
obarthel
2023-09-09 18:33:38 +02:00
parent 101846e423
commit 438fd5bbd2

View File

@ -168,9 +168,6 @@ struct MemoryNode
ULONG mn_Flags;
#ifdef __MEM_DEBUG
UBYTE mn_AlreadyFree;
UBYTE mn_Pad1[3];
void * mn_Allocation;
size_t mn_OriginalSize;
@ -180,10 +177,13 @@ struct MemoryNode
char * mn_File;
int mn_Line;
UBYTE mn_AlreadyFree;
UBYTE mn_Pad1[7];
#ifdef __USE_MEM_TREES
struct MemoryNode * mn_Left;
struct MemoryNode * mn_Right;
struct MemoryNode * mn_Parent;
UBYTE mn_IsRed;
UBYTE mn_Pad2[3];
#endif /* __USE_MEM_TREES */