aboutsummaryrefslogtreecommitdiffstats
path: root/error.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-15 02:09:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-04-15 02:09:27 +0000
commitba3908ee33b30d63b5e80a800363bdbd1e02bfa1 (patch)
tree46dbee7a4fdfe609699e9b24f733b3041c8330c4 /error.c
parent02ec298ad01e65fcc0d6d8fa15e1bbb0e946b6b5 (diff)
downloadruby-ba3908ee33b30d63b5e80a800363bdbd1e02bfa1.tar.gz
ruby.h: check argc to rb_funcall
* include/ruby/ruby.h (rb_funcall): check if argc matches the number of variadic arguments, and replace with rb_funcallv. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58362 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/error.c b/error.c
index 688642796d..e431a6f9b9 100644
--- a/error.c
+++ b/error.c
@@ -963,7 +963,7 @@ rb_get_backtrace(VALUE exc)
return Qnil;
return rb_check_backtrace(info);
}
- return rb_funcall(exc, mid, 0, 0);
+ return rb_funcallv(exc, mid, 0, 0);
}
/*