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;
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to