summaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-20 03:43:14 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-20 03:43:14 +0000
commite5b938812d8cef6f6c786b5a92c686389d4f8463 (patch)
treed3d7a91b6bb9ca8ee9d627c212c7e00c35f76510 /io.c
parent2d08493e2203da31865386ba2900cbfa76f68d8a (diff)
downloadruby-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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/io.c b/io.c
index f6ea3a115..7e4de9633 100644
--- a/io.c
+++ b/io.c
@@ -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);