summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/win32/win32.c b/win32/win32.c
index 699fc80467..0a43ac7118 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -7119,7 +7119,11 @@ rb_w32_write(int fd, const void *buf, size_t size)
if ((_osfile(fd) & FTEXT) &&
(!(_osfile(fd) & FPIPE) || fd == fileno(stdout) || fd == fileno(stderr))) {
- return _write(fd, buf, size);
+ ssize_t w = _write(fd, buf, size);
+ if (w == (ssize_t)-1 && errno == EINVAL) {
+ errno = map_errno(GetLastError());
+ }
+ return w;
}
rb_acrt_lowio_lock_fh(fd);