diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-05-27 13:36:26 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-05-27 13:36:26 +0000 |
commit | 51077c2c223c7d17ce9e49d5329a80701d32cba3 (patch) | |
tree | 26f919f4fdaa61e7ed71466c751babb5bf58408e /win32 | |
parent | 37f75ad0c4a5a9a669aa67fa5434a0cc615bb319 (diff) | |
download | ruby-51077c2c223c7d17ce9e49d5329a80701d32cba3.tar.gz |
* win32/win32.c (rb_w32_read): call ReadFile() with len = 0 before
reading really on console, because the first ReadFile() call after
PeekConsoleInput() always returns broken data. (Windows's bug).
[ruby-core:29018]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r-- | win32/win32.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/win32/win32.c b/win32/win32.c index 506a960d36..570ba2cf46 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -5032,6 +5032,7 @@ rb_w32_read(int fd, void *buf, size_t size) size_t len; size_t ret; OVERLAPPED ol, *pol = NULL; + int start = 0; if (is_socket(sock)) return rb_w32_recv(fd, buf, size, 0); @@ -5054,8 +5055,17 @@ rb_w32_read(int fd, void *buf, size_t size) ret = 0; retry: - /* get rid of console writing bug */ - len = (_osfile(fd) & FDEV) ? min(16 * 1024, size) : size; + /* get rid of console reading bug */ + if (is_console(_osfhnd(fd))) { + if (start) + len = min(16 * 1024, size); + else { + len = 0; + start = 1; + } + } + else + len = size; size -= len; /* if have cancel_io, use Overlapped I/O */ |