Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix rb_objspace_free
  • Loading branch information
funny-falcon committed Jan 6, 2012
commit 65c2d1606538b1799226d82a748dac5ec4edc30c
2 changes: 1 addition & 1 deletion gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ rb_objspace_free(rb_objspace_t *objspace)
struct gc_list *list, *next;
for (list = global_List; list; list = next) {
next = list->next;
free(list);
ruby_xfree(list);
}
}
if (objspace->heap.sorted) {
Expand Down