diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | iseq.c | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Sun Sep 20 03:20:21 2015 Koichi Sasada <[email protected]> + + * iseq.c (rb_iseq_free): free rb_iseq_t::body::cc_entries. + Sun Sep 20 02:46:34 2015 Koichi Sasada <[email protected]> * vm_core.h: split rb_call_info_t into several structs. @@ -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); |