svn commit: r347664 - stable/11/lib/libc/net
Michael Tuexen
tuexen at FreeBSD.org
Thu May 16 09:03:49 UTC 2019
Author: tuexen
Date: Thu May 16 09:03:48 2019
New Revision: 347664
URL: https://svnweb.freebsd.org/changeset/base/347664
Log:
MFC r344722:
Use correct buffer sizes in sctp_get[lp]addrs().
Modified:
stable/11/lib/libc/net/sctp_sys_calls.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libc/net/sctp_sys_calls.c
==============================================================================
--- stable/11/lib/libc/net/sctp_sys_calls.c Thu May 16 09:02:30 2019 (r347663)
+++ stable/11/lib/libc/net/sctp_sys_calls.c Thu May 16 09:03:48 2019 (r347664)
@@ -413,7 +413,7 @@ sctp_getpaddrs(int sd, sctp_assoc_t id, struct sockadd
return (-1);
}
/* size required is returned in 'asoc' */
- opt_len = (socklen_t) ((size_t)asoc + sizeof(struct sctp_getaddresses));
+ opt_len = (socklen_t) ((size_t)asoc + sizeof(sctp_assoc_t));
addrs = calloc(1, (size_t)opt_len);
if (addrs == NULL) {
errno = ENOMEM;
@@ -473,9 +473,7 @@ sctp_getladdrs(int sd, sctp_assoc_t id, struct sockadd
errno = ENOTCONN;
return (-1);
}
- opt_len = (socklen_t) (size_of_addresses +
- sizeof(struct sockaddr_storage) +
- sizeof(struct sctp_getaddresses));
+ opt_len = (socklen_t) (size_of_addresses + sizeof(sctp_assoc_t));
addrs = calloc(1, (size_t)opt_len);
if (addrs == NULL) {
errno = ENOMEM;
More information about the svn-src-all
mailing list