vm_args.c (rb_warn_check): Use unique_id * 2 instead of unique_id

The function assumed that the LSB of `callee` was 0.
This commit is contained in:
Yusuke Endoh 2019-12-09 12:30:00 +09:00
Родитель 036bc1da6c
Коммит 751a9b32e5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -597,7 +597,7 @@ static VALUE rb_warn_check(const rb_execution_context_t * const ec, const rb_ise
{
if (!iseq) return 0;
const void *const callee = (void *)iseq->body->iseq_unique_id;
const void *const callee = (void *)(iseq->body->iseq_unique_id * 2);
const rb_control_frame_t * const cfp = rb_vm_get_ruby_level_next_cfp(ec, ec->cfp);