diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-20 03:43:14 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-20 03:43:14 +0000 |
commit | e5b938812d8cef6f6c786b5a92c686389d4f8463 (patch) | |
tree | d3d7a91b6bb9ca8ee9d627c212c7e00c35f76510 /io.c | |
parent | 2d08493e2203da31865386ba2900cbfa76f68d8a (diff) | |
download | ruby-e5b938812d8cef6f6c786b5a92c686389d4f8463.tar.gz ruby-e5b938812d8cef6f6c786b5a92c686389d4f8463.tar.xz ruby-e5b938812d8cef6f6c786b5a92c686389d4f8463.zip |
* io.c (io_fwrite): workaround for MSVCRT's bug.
fixed: [ruby-core:03982]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -431,6 +431,14 @@ io_fwrite(str, fptr) ) { #ifdef __hpux if (!errno) errno = EAGAIN; +#elif defined(_WIN32) && !defined(__BORLANDC__) + /* workaround for MSVCRT's bug */ + if (!errno) { + if (GetLastError() == ERROR_NO_DATA) + errno = EPIPE; + else + errno = EBADF; + } #endif if (rb_io_wait_writable(fileno(f))) { rb_io_check_closed(fptr); |