mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Remove errant semicolon
This commit is contained in:
parent
38ad580d33
commit
981700af38
1 changed files with 1 additions and 1 deletions
2
gc.c
2
gc.c
|
@ -1709,7 +1709,7 @@ void gc_thread_data_free(gc_thread_data * thd)
|
|||
pthread_mutex_unlock(&(primordial_thread->heap_lock));
|
||||
if (thd->cached_heap_free_sizes)
|
||||
free(thd->cached_heap_free_sizes);
|
||||
if (thd->cached_heap_total_sizes);
|
||||
if (thd->cached_heap_total_sizes)
|
||||
free(thd->cached_heap_total_sizes);
|
||||
if (thd->jmp_start)
|
||||
free(thd->jmp_start);
|
||||
|
|
Loading…
Add table
Reference in a new issue