Fix errno in a couple of error cases.

MFC after: 3 days
This commit is contained in:
Michael Tuexen 2012-11-03 13:22:25 +00:00
parent 2923ae8a85
commit 4ed0ebf649
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242512

View File

@ -449,6 +449,7 @@ sctp_getpaddrs(int sd, sctp_assoc_t id, struct sockaddr **raddrs)
opt_len = (socklen_t) ((size_t)asoc + sizeof(struct sctp_getaddresses));
addrs = calloc(1, (size_t)opt_len);
if (addrs == NULL) {
errno = ENOMEM;
return (-1);
}
addrs->sget_assoc_id = id;
@ -777,6 +778,7 @@ sctp_sendx(int sd, const void *msg, size_t msg_len,
}
buf = malloc(len);
if (buf == NULL) {
errno = ENOMEM;
return (-1);
}
aa = (int *)buf;
@ -1052,7 +1054,7 @@ sctp_sendv(int sd,
CMSG_SPACE(sizeof(struct sctp_authinfo)) +
(size_t)addrcnt * CMSG_SPACE(sizeof(struct in6_addr)));
if (cmsgbuf == NULL) {
errno = ENOBUFS;
errno = ENOMEM;
return (-1);
}
msg.msg_control = cmsgbuf;