fix(runtime/alloc): bug at import_objs
This commit is contained in:
parent
a9458fdcb3
commit
f2ef0eb597
1 changed files with 1 additions and 1 deletions
|
|
@ -204,7 +204,7 @@ void heap::import_objs() {
|
|||
while (to_import) {
|
||||
page * p = get_page_of(to_import);
|
||||
void * n = get_next_obj(to_import);
|
||||
p->push_free_obj(n);
|
||||
p->push_free_obj(to_import);
|
||||
to_import = n;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue