summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2019-06-05 20:52:07 +1200
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2019-06-19 20:39:10 +1200
commit4b3b781c66c48604a013557172540effd929f96a (patch)
tree2baeae988491fe9ae896c8aff1cbc812e3d05d76 /vm.c
parent38791145ebc6890b97ea55ee490084c63b67f3cc (diff)
Ensure execution context is cleared after thread is finished.
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/vm.c b/vm.c
index f7b2515cec..b68e26fc3b 100644
--- a/vm.c
+++ b/vm.c
@@ -2704,9 +2704,6 @@ th_init(rb_thread_t *th, VALUE self)
0 /* dummy cref/me */,
0 /* dummy pc */, th->ec->vm_stack, 0, 0
);
- } else {
- th->ec->cfp = NULL;
- rb_ec_set_vm_stack(th->ec, NULL, 0);
}
th->status = THREAD_RUNNABLE;