summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-09 13:54:33 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-09 13:54:33 +0000
commit42b4255d087ec64ae2ed48d51dd6fe103ce397f6 (patch)
tree2bffa64804005904bcb09c9542383e34fcf17153 /io.c
parent3f289d9237dc9be556f3f5ca2606b9589f509379 (diff)
* io.c (rb_sysopen): max fd is updated in rb_sysopen_internal()
already. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/io.c b/io.c
index a2b96bad6b..0ffeb85942 100644
--- a/io.c
+++ b/io.c
@@ -4792,7 +4792,6 @@ rb_sysopen(VALUE fname, int oflags, mode_t perm)
rb_sys_fail(RSTRING_PTR(fname));
}
}
- rb_update_max_fd(fd);
return fd;
}