1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00
This commit is contained in:
Saúl Ibarra Corretgé 2025-01-17 15:25:45 +01:00
parent c3a8fbaeff
commit 811c8cfe1e

View File

@ -49,7 +49,7 @@ static void read_cb(uv_stream_t* t, ssize_t nread, const uv_buf_t* buf) {
uv_os_fd_t fd;
ASSERT_OK(uv_fileno((uv_handle_t*) t, &fd));
uv_handle_type type = uv_guess_handle((uv_file) fd);
uv_handle_type type = uv_guess_handle(uv_open_osfhandle(fd));
ASSERT_EQ(type, UV_TCP);
uv_close((uv_handle_t *) t, close_cb);