diff options
Diffstat (limited to 'deps/uv/src/win/udp.c')
-rw-r--r-- | deps/uv/src/win/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/uv/src/win/udp.c b/deps/uv/src/win/udp.c index 5d3a547543..2436799b57 100644 --- a/deps/uv/src/win/udp.c +++ b/deps/uv/src/win/udp.c @@ -152,7 +152,7 @@ void uv_udp_close(uv_loop_t* loop, uv_udp_t* handle) { void uv_udp_endgame(uv_loop_t* loop, uv_udp_t* handle) { - if (handle->flags & UV_HANDLE_CLOSING && + if (handle->flags & UV__HANDLE_CLOSING && handle->reqs_pending == 0) { assert(!(handle->flags & UV_HANDLE_CLOSED)); uv__handle_close(handle); |