Author: tuexen
Date: Sat Aug 20 20:15:36 2016
New Revision: 304543
URL: https://svnweb.freebsd.org/changeset/base/304543

Log:
  Unbreak sctp_connectx().
  
  MFC after: 3 days

Modified:
  head/sys/netinet/sctputil.c

Modified: head/sys/netinet/sctputil.c
==============================================================================
--- head/sys/netinet/sctputil.c Sat Aug 20 19:48:03 2016        (r304542)
+++ head/sys/netinet/sctputil.c Sat Aug 20 20:15:36 2016        (r304543)
@@ -6356,7 +6356,7 @@ sctp_connectx_helper_find(struct sctp_in
        struct sctp_tcb *stcb = NULL;
        unsigned int incr, at, i;
 
-       at = incr = 0;
+       at = 0;
        sa = addr;
        *error = *num_v6 = *num_v4 = 0;
        /* account and validate addresses */
@@ -6364,6 +6364,7 @@ sctp_connectx_helper_find(struct sctp_in
                switch (sa->sa_family) {
 #ifdef INET
                case AF_INET:
+                       incr = (unsigned int)sizeof(struct sockaddr_in);
                        if (sa->sa_len != incr) {
                                SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTPUTIL, EINVAL);
                                *error = EINVAL;
@@ -6371,7 +6372,6 @@ sctp_connectx_helper_find(struct sctp_in
                                return (NULL);
                        }
                        (*num_v4) += 1;
-                       incr = (unsigned int)sizeof(struct sockaddr_in);
                        break;
 #endif
 #ifdef INET6
@@ -6387,6 +6387,7 @@ sctp_connectx_helper_find(struct sctp_in
                                        *bad_addr = 1;
                                        return (NULL);
                                }
+                               incr = (unsigned int)sizeof(struct 
sockaddr_in6);
                                if (sa->sa_len != incr) {
                                        SCTP_LTRACE_ERR_RET(inp, NULL, NULL, 
SCTP_FROM_SCTPUTIL, EINVAL);
                                        *error = EINVAL;
@@ -6394,7 +6395,6 @@ sctp_connectx_helper_find(struct sctp_in
                                        return (NULL);
                                }
                                (*num_v6) += 1;
-                               incr = (unsigned int)sizeof(struct 
sockaddr_in6);
                                break;
                        }
 #endif
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to