summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-06 12:31:53 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-06 12:31:53 +0000
commit1c544fccd27d399a444353905c8d921b1d1c5186 (patch)
treeb0c51b67f8c95f0f532b29913823a2106d098ec6 /io.c
parentd1521f4bb267875c9fa9eb6b5a23a81bc4a57002 (diff)
* io.c (io_reopen): avoid close if possible.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/io.c b/io.c
index d8af0bdc2b..e3f913af23 100644
--- a/io.c
+++ b/io.c
@@ -5684,20 +5684,17 @@ io_reopen(VALUE io, VALUE nfile)
fd = fptr->fd;
fd2 = orig->fd;
if (fd != fd2) {
- if (IS_PREP_STDIO(fptr)) {
- /* need to keep stdio objects */
+ if (IS_PREP_STDIO(fptr) || fd <= 2 || !fptr->stdio_file) {
+ /* need to keep FILE objects of stdin, stdout and stderr */
if (dup2(fd2, fd) < 0)
rb_sys_fail_path(orig->pathv);
}
else {
- if (fptr->stdio_file)
- fclose(fptr->stdio_file);
- else
- close(fptr->fd);
+ fclose(fptr->stdio_file);
fptr->stdio_file = 0;
fptr->fd = -1;
- if (dup2(fd2, fd) < 0)
- rb_sys_fail_path(orig->pathv);
+ if (dup2(fd2, fd) < 0)
+ rb_sys_fail_path(orig->pathv);
fptr->fd = fd;
}
rb_thread_fd_close(fd);