From 775ed27d6d361c9c50236497dd4382bbf85068d9 Mon Sep 17 00:00:00 2001 From: Jemma Issroff Date: Mon, 13 Nov 2023 13:36:21 -0800 Subject: [PATCH] [PRISM] Initialize keyword to silence warning --- prism_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism_compile.c b/prism_compile.c index 3f02b858f9..9f423db60f 100644 --- a/prism_compile.c +++ b/prism_compile.c @@ -3275,7 +3275,7 @@ pm_compile_node(rb_iseq_t *iseq, const pm_node_t *node, LINK_ANCHOR *const ret, pm_node_list_t *posts_list = NULL; pm_node_list_t *requireds_list = NULL; - struct rb_iseq_param_keyword *keyword; + struct rb_iseq_param_keyword *keyword = NULL; struct rb_iseq_constant_body *body = ISEQ_BODY(iseq);