Skip to content

Commit

Permalink
Disable _gc_array
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Sep 13, 2024
1 parent e8b1007 commit bcc0fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/libs/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ static void *gc_allocate(size_t count, size_t size) {
void _gc_array(void *ptr, int *length) {
gc_allocation_t *alloc = gc_allocation_map_get(gc->allocs, ptr);
if (alloc) {
alloc->array_length = length;
// alloc->array_length = length;
}
}

Expand Down

0 comments on commit bcc0fe3

Please sign in to comment.