1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

assert cc->call_ != NULL

This commit is contained in:
Koichi Sasada 2021-11-16 17:53:33 +09:00
parent 2d1a7bed03
commit 84aba25031
Notes: git 2021-11-17 22:22:05 +09:00

View file

@ -332,6 +332,7 @@ static inline vm_call_handler
vm_cc_call(const struct rb_callcache *cc)
{
VM_ASSERT(IMEMO_TYPE_P(cc, imemo_callcache));
VM_ASSERT(cc->call_ != NULL);
return cc->call_;
}