summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-03 05:43:31 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-03 05:43:31 +0000
commit86e9a1c0056bdb2f6623bb5644297fff1b4e4e70 (patch)
tree78b18817a144533f5e095af06a8fc65bf11cdf29 /iseq.c
parent30f69beebaf526dd03dc494d85c4dba85bbe8368 (diff)
* iseq.c (iseq_free): resolve memory leak.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48251 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index 561d85be5a..0ebf2a83e5 100644
--- a/iseq.c
+++ b/iseq.c
@@ -88,7 +88,10 @@ iseq_free(void *ptr)
RUBY_FREE_UNLESS_NULL(iseq->callinfo_entries);
RUBY_FREE_UNLESS_NULL(iseq->catch_table);
RUBY_FREE_UNLESS_NULL(iseq->param.opt_table);
- RUBY_FREE_UNLESS_NULL(iseq->param.keyword);
+ if (iseq->param.keyword != NULL) {
+ RUBY_FREE_UNLESS_NULL(iseq->param.keyword->default_values);
+ RUBY_FREE_UNLESS_NULL(iseq->param.keyword);
+ }
compile_data_free(iseq->compile_data);
RUBY_FREE_UNLESS_NULL(iseq->iseq);
}