add NULL check (#1925)
This commit is contained in:
parent
a5beb940f8
commit
6d20430ccc
|
|
@ -276,6 +276,7 @@ static void __InsertMemNode(MemPool *const mempool, AllocList *const list, MemNo
|
||||||
mempool->arena.offs += iter->size;
|
mempool->arena.offs += iter->size;
|
||||||
__RemoveMemNode(list, iter);
|
__RemoveMemNode(list, iter);
|
||||||
iter = list->head;
|
iter = list->head;
|
||||||
|
if (iter == NULL) return;
|
||||||
}
|
}
|
||||||
const uintptr_t inode = ( uintptr_t )node;
|
const uintptr_t inode = ( uintptr_t )node;
|
||||||
const uintptr_t iiter = ( uintptr_t )iter;
|
const uintptr_t iiter = ( uintptr_t )iter;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user