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

* iseq.c (rb_iseq_free): free rb_iseq_t::body::cc_entries.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51904 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2015-09-19 18:21:35 +00:00
parent d5ec9ec308
commit bffa617d36
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun Sep 20 03:20:21 2015 Koichi Sasada <ko1@atdot.net>
* iseq.c (rb_iseq_free): free rb_iseq_t::body::cc_entries.
Sun Sep 20 02:46:34 2015 Koichi Sasada <ko1@atdot.net>
* vm_core.h: split rb_call_info_t into several structs.

1
iseq.c
View file

@ -82,6 +82,7 @@ rb_iseq_free(const rb_iseq_t *iseq)
ruby_xfree((void *)kw_arg);
}
ruby_xfree(iseq->body->ci_entries);
ruby_xfree(iseq->body->cc_entries);
}
ruby_xfree((void *)iseq->body->catch_table);
ruby_xfree((void *)iseq->body->param.opt_table);