From 4de3979f96119c3da170afc678d6df5bf4f3b7ba Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 5 May 2016 07:18:14 +0000 Subject: proc.c: no unnecessary temporary array * proc.c (bmcall): get rid of making temporary single element array. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54917 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- proc.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index 9bef504815..570cbcbc64 100644 --- a/proc.c +++ b/proc.c @@ -2533,12 +2533,9 @@ bmcall(VALUE args, VALUE method, int argc, VALUE *argv, VALUE passed_proc) VALUE ret; if (CLASS_OF(args) != rb_cArray) { - args = rb_ary_new3(1, args); - argc = 1; - } - else { - argc = check_argc(RARRAY_LEN(args)); + return rb_method_call_with_block(1, &args, method, passed_proc); } + argc = check_argc(RARRAY_LEN(args)); ret = rb_method_call_with_block(argc, RARRAY_PTR(args), method, passed_proc); RB_GC_GUARD(a) = args; return ret; -- cgit v1.2.3