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

by Joel Stanley.
parent e049f470
...@@ -898,6 +898,7 @@ Nathan Srebro ...@@ -898,6 +898,7 @@ Nathan Srebro
RajGopal Srinivasan RajGopal Srinivasan
Quentin Stafford-Fraser Quentin Stafford-Fraser
Frank Stajano Frank Stajano
Joel Stanley
Oliver Steele Oliver Steele
Greg Stein Greg Stein
Chris Stern Chris Stern
......
...@@ -1749,7 +1749,7 @@ cmsg_min_space(struct msghdr *msg, struct cmsghdr *cmsgh, size_t space) ...@@ -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) + static const size_t cmsg_len_end = (offsetof(struct cmsghdr, cmsg_len) +
sizeof(cmsgh->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; return 0;
if (space < cmsg_len_end) if (space < cmsg_len_end)
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