mirror of
https://github.com/Decscots/Lockpick_RCM.git
synced 2025-05-04 18:05:36 +02:00
heap: Prevent node chain collapse on free
This commit is contained in:
parent
e5849e3ab2
commit
b468026540
1 changed files with 1 additions and 0 deletions
|
@ -56,6 +56,7 @@ static u32 _heap_alloc(heap_t *heap, u32 size, u32 alignment)
|
||||||
node->used = 1;
|
node->used = 1;
|
||||||
new->used = 0;
|
new->used = 0;
|
||||||
new->next = node->next;
|
new->next = node->next;
|
||||||
|
new->next->prev = new;
|
||||||
new->prev = node;
|
new->prev = node;
|
||||||
node->next = new;
|
node->next = new;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue