summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/io.c b/io.c
index 9cb924ba22..00f97be61a 100644
--- a/io.c
+++ b/io.c
@@ -394,7 +394,11 @@ rb_io_fwrite(ptr, len, f)
} while (--n > 0);
#else
while (errno = 0, ptr += (r = fwrite(ptr, 1, n, f)), (n -= r) > 0) {
- if (ferror(f)) {
+ if (ferror(f)
+#if defined __BORLANDC__
+ || errno == EBADF || errno == ENOENT
+#endif
+ ) {
#ifdef __hpux
if (!errno) errno = EAGAIN;
#endif