Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imagine such code: list_t ls1 = alloc_object(1); cons(2, ls1); these code will make an infinite loop, because NEXT(NEXT(ls1) ) == ls. to avoid this bug, fix the alloc_object() function, add some statements.
- Loading branch information