aboutsummaryrefslogtreecommitdiffstats
path: root/proc.c
diff options
context:
space:
mode:
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c7
1 files changed, 2 insertions, 5 deletions
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;