Skip to content

Commit bffa617

Browse files
committed
* 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
1 parent d5ec9ec commit bffa617

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
15
Sun Sep 20 02:46:34 2015 Koichi Sasada <ko1@atdot.net>
26

37
* vm_core.h: split rb_call_info_t into several structs.

iseq.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ rb_iseq_free(const rb_iseq_t *iseq)
8282
ruby_xfree((void *)kw_arg);
8383
}
8484
ruby_xfree(iseq->body->ci_entries);
85+
ruby_xfree(iseq->body->cc_entries);
8586
}
8687
ruby_xfree((void *)iseq->body->catch_table);
8788
ruby_xfree((void *)iseq->body->param.opt_table);

0 commit comments

Comments
 (0)