svn commit: r347674 - stable/11/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Thu May 16 09:22:39 UTC 2019
Author: tuexen
Date: Thu May 16 09:22:37 2019
New Revision: 347674
URL: https://svnweb.freebsd.org/changeset/base/347674
Log:
MFC r345465:
Fix a signed/unsigned bug when receiving SCTP messages.
This is joint work with rrs at .
Modified:
stable/11/sys/netinet/sctputil.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/netinet/sctputil.c
==============================================================================
--- stable/11/sys/netinet/sctputil.c Thu May 16 09:20:54 2019 (r347673)
+++ stable/11/sys/netinet/sctputil.c Thu May 16 09:22:37 2019 (r347674)
@@ -5215,8 +5215,9 @@ sctp_sorecvmsg(struct socket *so,
*
*/
struct sctp_inpcb *inp = NULL;
- int my_len = 0;
- int cp_len = 0, error = 0;
+ size_t my_len = 0;
+ size_t cp_len = 0;
+ int error = 0;
struct sctp_queued_to_read *control = NULL, *ctl = NULL, *nxt = NULL;
struct mbuf *m = NULL;
struct sctp_tcb *stcb = NULL;
@@ -5724,8 +5725,8 @@ get_more_data:
m = control->data;
while (m) {
/* Move out all we can */
- cp_len = (int)uio->uio_resid;
- my_len = (int)SCTP_BUF_LEN(m);
+ cp_len = uio->uio_resid;
+ my_len = SCTP_BUF_LEN(m);
if (cp_len > my_len) {
/* not enough in this buf */
cp_len = my_len;
More information about the svn-src-all
mailing list