We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5ec9ec commit bffa617Copy full SHA for bffa617
ChangeLog
@@ -1,3 +1,7 @@
1
+Sun Sep 20 03:20:21 2015 Koichi Sasada <ko1@atdot.net>
2
+
3
+ * iseq.c (rb_iseq_free): free rb_iseq_t::body::cc_entries.
4
5
Sun Sep 20 02:46:34 2015 Koichi Sasada <ko1@atdot.net>
6
7
* vm_core.h: split rb_call_info_t into several structs.
iseq.c
@@ -82,6 +82,7 @@ rb_iseq_free(const rb_iseq_t *iseq)
82
ruby_xfree((void *)kw_arg);
83
}
84
ruby_xfree(iseq->body->ci_entries);
85
+ ruby_xfree(iseq->body->cc_entries);
86
87
ruby_xfree((void *)iseq->body->catch_table);
88
ruby_xfree((void *)iseq->body->param.opt_table);
0 commit comments