summaryrefslogtreecommitdiff
path: root/cont.c
diff options
context:
space:
mode:
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cont.c b/cont.c
index 36baa41ba2..bc812674f9 100644
--- a/cont.c
+++ b/cont.c
@@ -86,7 +86,8 @@ cont_free(void *ptr)
RUBY_FREE_UNLESS_NULL(cont->machine_register_stack);
#endif
RUBY_FREE_UNLESS_NULL(cont->vm_stack);
- if (cont->saved_thread.local_storage) {
+ if (cont->vm_stack && cont->saved_thread.local_storage) {
+ /* fiber */
st_free_table(cont->saved_thread.local_storage);
}
ruby_xfree(ptr);