1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

remove check

This commit is contained in:
Saúl Ibarra Corretgé 2025-01-17 16:39:26 +01:00
parent 811c8cfe1e
commit 7fc6f9998b

View File

@ -47,11 +47,6 @@ static void read_cb(uv_stream_t* t, ssize_t nread, const uv_buf_t* buf) {
ASSERT_PTR_EQ((uv_tcp_t*) t, &tcp);
ASSERT_EQ(nread, UV_ECONNRESET);
uv_os_fd_t fd;
ASSERT_OK(uv_fileno((uv_handle_t*) t, &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);
free(buf->base);
}