summaryrefslogtreecommitdiff
path: root/iseq.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-26 02:03:06 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-26 02:03:06 +0000
commitef8c2e4be52314f90cad38c8010dff1e07437e21 (patch)
treef73df3ad1c2437ab32d883533a4d27f646eaaeaf /iseq.c
parentb1028f7a6ce3cdb01f1215e8ccc69b23e39c77f4 (diff)
iseq.c (iseq_s_compile_file): close IO when done
This will prevent some leaked FD warnings in future tests. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48578 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.c')
-rw-r--r--iseq.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/iseq.c b/iseq.c
index f290ed4692..dfe9874120 100644
--- a/iseq.c
+++ b/iseq.c
@@ -722,6 +722,9 @@ iseq_s_compile_file(int argc, VALUE *argv, VALUE self)
parser = rb_parser_new();
node = rb_parser_compile_file(parser, fname, f, NUM2INT(line));
+
+ rb_io_close(f);
+
make_compile_option(&option, opt);
return rb_iseq_new_with_opt(node, rb_str_new2("<main>"), file,
rb_realpath_internal(Qnil, file, 1), line, Qfalse,