Issue12810: Remove check for negative unsigned value in socketmodule.c. Patch

by Joel Stanley.
parent e049f470
......@@ -898,6 +898,7 @@ Nathan Srebro
RajGopal Srinivasan
Quentin Stafford-Fraser
Frank Stajano
Joel Stanley
Oliver Steele
Greg Stein
Chris Stern
......
......@@ -1749,7 +1749,7 @@ cmsg_min_space(struct msghdr *msg, struct cmsghdr *cmsgh, size_t space)
static const size_t cmsg_len_end = (offsetof(struct cmsghdr, cmsg_len) +
sizeof(cmsgh->cmsg_len));
if (cmsgh == NULL || msg->msg_control == NULL || msg->msg_controllen < 0)
if (cmsgh == NULL || msg->msg_control == NULL)
return 0;
if (space < cmsg_len_end)
space = cmsg_len_end;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment