diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-13 09:23:54 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-01-13 09:23:54 +0000 |
| commit | 32036028a6331ccca4a4e94469be7aa10be92b0b (patch) | |
| tree | 3303060aa59fdaa0cf4757e24c3f926f6744d514 /io.c | |
| parent | 32c38881280a40bb48f2f3688bb8bc7c7ad11115 (diff) | |
| download | ruby-32036028a6331ccca4a4e94469be7aa10be92b0b.tar.gz ruby-32036028a6331ccca4a4e94469be7aa10be92b0b.tar.xz ruby-32036028a6331ccca4a4e94469be7aa10be92b0b.zip | |
* io.c (rb_io_close_read): call rb_io_fptr_cleanup() instead of
fptr_finalize() because the fptr has special finalizser if it is a
pipe. [ruby-dev:37757] (3)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
| -rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3378,7 +3378,7 @@ rb_io_close_read(VALUE io) write_io = GetWriteIO(io); if (io != write_io) { rb_io_t *wfptr; - fptr_finalize(fptr, Qfalse); + rb_io_fptr_cleanup(fptr, Qfalse); GetOpenFile(write_io, wfptr); RFILE(io)->fptr = wfptr; RFILE(write_io)->fptr = NULL; |
