svn commit: r252939 - stable/9/lib/libc/net

Michael Tuexen tuexen at FreeBSD.org
Sun Jul 7 12:34:48 UTC 2013


Author: tuexen
Date: Sun Jul  7 12:34:47 2013
New Revision: 252939
URL: http://svnweb.freebsd.org/changeset/base/252939

Log:
  MFC r242512:
  Fix errno in a couple of error cases.

Modified:
  stable/9/lib/libc/net/sctp_sys_calls.c
Directory Properties:
  stable/9/lib/   (props changed)
  stable/9/lib/libc/   (props changed)

Modified: stable/9/lib/libc/net/sctp_sys_calls.c
==============================================================================
--- stable/9/lib/libc/net/sctp_sys_calls.c	Sun Jul  7 12:32:30 2013	(r252938)
+++ stable/9/lib/libc/net/sctp_sys_calls.c	Sun Jul  7 12:34:47 2013	(r252939)
@@ -449,6 +449,7 @@ sctp_getpaddrs(int sd, sctp_assoc_t id, 
 	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
 	}
 	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;


More information about the svn-src-stable-9 mailing list