summaryrefslogtreecommitdiffstats
path: root/vm_eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-28 00:26:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-28 00:26:27 +0000
commitaf886605cd1a1ed38162691667a15a50b30e2b99 (patch)
treefa5ccd76a1f9c43f841e377a6d4dc815fd8f5609 /vm_eval.c
parentbdfa13ba9580e51caba0d93e610def712fa53dcc (diff)
downloadruby-af886605cd1a1ed38162691667a15a50b30e2b99.tar.gz
ruby-af886605cd1a1ed38162691667a15a50b30e2b99.tar.xz
ruby-af886605cd1a1ed38162691667a15a50b30e2b99.zip
* vm_eval.c (check_funcall_failed): should rescue user raised
NoMethodError. rescue all NoMethodError if receiver does not respond to the method name. [ruby-dev:39796] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm_eval.c')
-rw-r--r--vm_eval.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/vm_eval.c b/vm_eval.c
index 8d1054c8a..18cc8361d 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -255,10 +255,9 @@ check_funcall_exec(struct rescue_funcall_args *args)
static VALUE
check_funcall_failed(struct rescue_funcall_args *args, VALUE e)
{
- VALUE sym = rb_funcall(e, rb_intern("name"), 0, 0);
-
- if (args->sym != sym)
+ if (rb_respond_to(args->recv, args->sym)) {
rb_exc_raise(e);
+ }
return Qundef;
}