Remove errant semicolon

This commit is contained in:
Justin Ethier 2017-01-28 17:54:35 -05:00
parent 38ad580d33
commit 981700af38

2
gc.c
View file

@ -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);