From 372515f33c908b36b3f5fbd2edcb34c69b418500 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=9A=93?= Date: Thu, 27 Mar 2025 01:45:20 -0400 Subject: [PATCH] Don't set `saved_ec.tag` to `NULL` in `cont_init()` --- cont.c | 1 - 1 file changed, 1 deletion(-) diff --git a/cont.c b/cont.c index ae68da4e83..072ae4562f 100644 --- a/cont.c +++ b/cont.c @@ -1369,7 +1369,6 @@ cont_init(rb_context_t *cont, rb_thread_t *th) /* save thread context */ cont_save_thread(cont, th); cont->saved_ec.thread_ptr = th; - cont->saved_ec.tag = NULL; cont->saved_ec.local_storage = NULL; cont->saved_ec.local_storage_recursive_hash = Qnil; cont->saved_ec.local_storage_recursive_hash_for_trace = Qnil;