merge multiple blocks

This commit is contained in:
Corwin Kuiper 2022-01-20 19:06:48 +00:00
parent 1614e46c4e
commit 08e07a0d37

View file

@ -94,6 +94,7 @@ impl BlockAllocator {
current.size += next.size;
current.next = next.next;
continue;
}
}
list_ptr = &mut curr.as_mut().next;