mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
io.c: wait child process after close_read
* io.c (rb_io_close_read): duplex IO should wait its child process even after close_read. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43117 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d748f5b6eb
commit
bda5eac115
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Oct 2 16:26:49 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* io.c (rb_io_close_read): duplex IO should wait its child process
|
||||
even after close_read.
|
||||
|
||||
Wed Oct 2 15:39:13 2013 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* vm_core.h: use __has_attribute() instead of __clang__major__ because
|
||||
|
|
2
io.c
2
io.c
|
@ -4433,6 +4433,8 @@ rb_io_close_read(VALUE io)
|
|||
if (io != write_io) {
|
||||
rb_io_t *wfptr;
|
||||
GetOpenFile(write_io, wfptr);
|
||||
wfptr->pid = fptr->pid;
|
||||
fptr->pid = 0;
|
||||
RFILE(io)->fptr = wfptr;
|
||||
/* bind to write_io temporarily to get rid of memory/fd leak */
|
||||
fptr->tied_io_for_writing = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue