aboutsummaryrefslogtreecommitdiffstats
path: root/yarvcore.c
diff options
context:
space:
mode:
Diffstat (limited to 'yarvcore.c')
-rw-r--r--yarvcore.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/yarvcore.c b/yarvcore.c
index f5b3225a2f..2273ef81cb 100644
--- a/yarvcore.c
+++ b/yarvcore.c
@@ -329,7 +329,6 @@ th_init2(rb_thread_t *th)
/* allocate thread stack */
th->stack_size = RUBY_VM_THREAD_STACK_SIZE;
th->stack = ALLOC_N(VALUE, th->stack_size);
- MEMZERO(th->stack, VALUE, th->stack_size);
th->cfp = (void *)(th->stack + th->stack_size);
th->cfp--;