diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2013-03-05 16:10:13 +0100 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-03-05 16:10:13 +0100 |
commit | f7b06e0bbc21ec865797fe433b3dfcf10dbac819 (patch) | |
tree | 4f2cef82bf9dec5ce8dafd916b5c8dd979c9fb09 /deps/uv/src/unix/stream.c | |
parent | 862f7b850d7155073b44afd85f8d6974fb500e4d (diff) | |
download | node-new-f7b06e0bbc21ec865797fe433b3dfcf10dbac819.tar.gz |
deps: upgrade libuv to 0b26af3
Diffstat (limited to 'deps/uv/src/unix/stream.c')
-rw-r--r-- | deps/uv/src/unix/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/uv/src/unix/stream.c b/deps/uv/src/unix/stream.c index 080535e5f1..8137d24eee 100644 --- a/deps/uv/src/unix/stream.c +++ b/deps/uv/src/unix/stream.c @@ -1119,7 +1119,7 @@ static void uv__stream_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { return; } - if (events & UV__POLLIN) { + if (events & (UV__POLLIN | UV__POLLERR | UV__POLLHUP)) { assert(uv__stream_fd(stream) >= 0); uv__read(stream); |