Just call search_method_protect [Bug #16669]

This commit is contained in:
Nobuyoshi Nakada 2020-04-23 10:24:49 +09:00
Родитель da5bd0047d
Коммит 74c8aaef7d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7CD2805BFA3770C6
1 изменённых файлов: 1 добавлений и 7 удалений

Просмотреть файл

@ -936,13 +936,7 @@ search_method_protect(VALUE klass, ID id, VALUE *defined_class_ptr)
MJIT_FUNC_EXPORTED const rb_method_entry_t *
rb_method_entry(VALUE klass, ID id)
{
const rb_method_entry_t *me = search_method(klass, id, NULL);
if (me && me->def && me->def->type != VM_METHOD_TYPE_UNDEF) {
return me;
}
else {
return NULL;
}
return search_method_protect(klass, id, NULL);
}
static inline const rb_callable_method_entry_t *