aboutsummaryrefslogtreecommitdiffstats
path: root/proc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-07 02:52:34 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-07 02:52:34 +0000
commitc5dad98c41a720a15c9dcc96d3df570cd9e23df3 (patch)
tree20f37d676f6bcd4dced41757980e0a5d272eb6ee /proc.c
parentf395c5be87dac498debc538d2d57953a74f97cb0 (diff)
downloadruby-c5dad98c41a720a15c9dcc96d3df570cd9e23df3.tar.gz
* proc.c (rb_method_call): because data->me should be non-NULL,
do not check data->me * proc.c (method_inspect): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51173 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r--proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proc.c b/proc.c
index 51c3436825..6c17f27848 100644
--- a/proc.c
+++ b/proc.c
@@ -1848,7 +1848,7 @@ rb_method_call(int argc, const VALUE *argv, VALUE method)
static const rb_callable_method_entry_t *
method_callable_method_entry(struct METHOD *data)
{
- if (data->me && data->me->defined_class == 0) rb_bug("method_callable_method_entry: not callable.");
+ if (data->me->defined_class == 0) rb_bug("method_callable_method_entry: not callable.");
return (const rb_callable_method_entry_t *)data->me;
}
@@ -2324,7 +2324,7 @@ method_inspect(VALUE method)
mklass = data->klass;
- if (data->me && data->me->def->type == VM_METHOD_TYPE_ALIAS) {
+ if (data->me->def->type == VM_METHOD_TYPE_ALIAS) {
defined_class = data->me->def->body.alias.original_me->owner;
}
else {