From 81c378400434dd15989a4b22d812cf2f78e6104f Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 20 Feb 2015 08:52:15 +0000 Subject: merge revision(s) 49517: [Backport #10831] * vm_core.h (rb_call_info_kw_arg_struct): make keywords a symbols list to get rid of inadvertent creation by variable keyword arguments. [ruby-core:68031] [Bug #10831] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@49666 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_core.h') diff --git a/vm_core.h b/vm_core.h index 809da4e86f..51be6992e1 100644 --- a/vm_core.h +++ b/vm_core.h @@ -137,7 +137,7 @@ struct rb_control_frame_struct; typedef struct rb_call_info_kw_arg_struct { int keyword_len; - ID keywords[1]; + VALUE keywords[1]; } rb_call_info_kw_arg_t; /* rb_call_info_t contains calling information including inline cache */ -- cgit v1.2.3