aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-29 00:39:16 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-29 00:39:16 +0000
commit64a588e8e0f9a4b739ab26fd305552e40f563eb2 (patch)
treedc33ae83b72e6b928ae49807636dc45418d5bbb3
parent418a2862d5e1d7363252c2d8774e1a7c86e5d30d (diff)
downloadruby-64a588e8e0f9a4b739ab26fd305552e40f563eb2.tar.gz
vm_eval.c: follow the original class
* vm_eval.c (vm_call0_body): follow the original class, not to loop the prepended module. [ruby-core:77784] [Bug #12876] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/ruby/test_super.rb14
-rw-r--r--vm_eval.c2
3 files changed, 20 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7620b905c3..aed05a54fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Oct 29 09:39:14 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * vm_eval.c (vm_call0_body): follow the original class, not to
+ loop the prepended module. [ruby-core:77784] [Bug #12876]
+
Sat Oct 29 00:14:30 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* enc/trans/windows-1255-tbl.rb: update mapping from 0xCA to
diff --git a/test/ruby/test_super.rb b/test/ruby/test_super.rb
index 469ba60ff2..9691116fb4 100644
--- a/test/ruby/test_super.rb
+++ b/test/ruby/test_super.rb
@@ -530,4 +530,18 @@ class TestSuper < Test::Unit::TestCase
assert_equal "b", b.new.foo{"c"}
end
+
+ def test_public_zsuper_with_prepend
+ bug12876 = '[ruby-core:77784] [Bug #12876]'
+ m = EnvUtil.labeled_module("M")
+ c = EnvUtil.labeled_class("C") {prepend m; public :initialize}
+ o = assert_nothing_raised(Timeout::Error, bug12876) {
+ Timeout.timeout(3) {c.new}
+ }
+ assert_instance_of(c, o)
+ m.module_eval {def initialize; raise "exception in M"; end}
+ assert_raise_with_message(RuntimeError, "exception in M") {
+ c.new
+ }
+ end
end
diff --git a/vm_eval.c b/vm_eval.c
index 18cd9dd436..672d5aef1f 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -201,7 +201,7 @@ vm_call0_body(rb_thread_t* th, struct rb_calling_info *calling, const struct rb_
goto again;
}
- super_class = RCLASS_SUPER(cc->me->defined_class);
+ super_class = RCLASS_SUPER(RCLASS_ORIGIN(cc->me->defined_class));
if (!super_class || !(cc->me = rb_callable_method_entry(super_class, ci->mid))) {
enum method_missing_reason ex = (type == VM_METHOD_TYPE_ZSUPER) ? MISSING_SUPER : 0;