From ef8c2e4be52314f90cad38c8010dff1e07437e21 Mon Sep 17 00:00:00 2001 From: normal Date: Wed, 26 Nov 2014 02:03:06 +0000 Subject: [PATCH] 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 --- ChangeLog | 4 ++++ iseq.c | 3 +++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1fe019e93f..eaa20be4c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Wed Nov 26 11:01:35 2014 Eric Wong + + * iseq.c (iseq_s_compile_file): close IO when done + Wed Nov 26 06:06:23 2014 Tanaka Akira * common.mk: encdb.h and transdb.h depends on $(PREP). 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("
"), file, rb_realpath_internal(Qnil, file, 1), line, Qfalse,