From 332210d4410b1b6aa520264e5f09bafa61626a73 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 3 Jun 2015 19:51:38 +0000 Subject: * class.c (method_entry_i): mtbl should not have `me' as NULL. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50755 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- class.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'class.c') diff --git a/class.c b/class.c index 67efd6c5cc..1dea8b01d9 100644 --- a/class.c +++ b/class.c @@ -1123,7 +1123,7 @@ method_entry_i(st_data_t key, st_data_t value, st_data_t data) struct method_entry_arg *arg = (struct method_entry_arg *)data; rb_method_visibility_t type; - if (me && me->def->type == VM_METHOD_TYPE_REFINED) { + if (me->def->type == VM_METHOD_TYPE_REFINED) { VALUE klass = me->klass; me = rb_resolve_refined_method(Qnil, me, NULL); if (!me) return ST_CONTINUE; -- cgit v1.2.3