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

unix,win: handle nbufs=0 in uv_udp_try_send (#4641)

This commit is contained in:
Ben Noordhuis 2024-12-09 21:14:01 +01:00 committed by GitHub
parent 467859c2ba
commit 2494c088f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 2 deletions

View File

@ -793,7 +793,8 @@ int uv__udp_try_send(uv_udp_t* handle,
struct msghdr h;
ssize_t size;
assert(nbufs > 0);
if (nbufs < 1)
return UV_EINVAL;
/* already sending a message */
if (handle->send_queue_count != 0)

View File

@ -1101,7 +1101,8 @@ int uv__udp_try_send(uv_udp_t* handle,
struct sockaddr_storage converted;
int err;
assert(nbufs > 0);
if (nbufs < 1)
return UV_EINVAL;
if (addr != NULL) {
err = uv__convert_to_localhost_if_unspecified(addr, &converted);

View File

@ -101,6 +101,10 @@ TEST_IMPL(udp_try_send) {
ASSERT_OK(r);
buf = uv_buf_init(buffer, sizeof(buffer));
r = uv_udp_try_send(&client, &buf, 0, (const struct sockaddr*) &addr);
ASSERT_EQ(r, UV_EINVAL);
r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &addr);
ASSERT_EQ(r, UV_EMSGSIZE);