From 2bd8098c6d14b485c90a8e49355991e5220989e8 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Sun, 17 Jan 2021 18:07:33 +0900 Subject: [PATCH] Suppress the warning for the invalid method_explorer case --- vm_insnhelper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm_insnhelper.c b/vm_insnhelper.c index bb75406edb..f385da46fa 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -4473,7 +4473,7 @@ vm_sendish( enum method_explorer_type method_explorer #endif ) { - VALUE val; + VALUE val = Qundef; const struct rb_callinfo *ci = cd->ci; const struct rb_callcache *cc; int argc = vm_ci_argc(ci);