svn commit: r360942 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Mon May 11 22:47:21 UTC 2020


Author: tuexen
Date: Mon May 11 22:47:20 2020
New Revision: 360942
URL: https://svnweb.freebsd.org/changeset/base/360942

Log:
  Fix a copy and paste error introduced in r360878.
  
  Reported-by:		syzbot+a0863e972771f2f0d4b3 at syzkaller.appspotmail.com
  Reported-by:		syzbot+4481757e967ba83c445a at syzkaller.appspotmail.com
  MFC after:		3 days

Modified:
  head/sys/netinet/sctp_input.c

Modified: head/sys/netinet/sctp_input.c
==============================================================================
--- head/sys/netinet/sctp_input.c	Mon May 11 22:39:53 2020	(r360941)
+++ head/sys/netinet/sctp_input.c	Mon May 11 22:47:20 2020	(r360942)
@@ -5225,7 +5225,7 @@ process_control_chunks:
 					auth_skipped = 0;
 				}
 				/* Restart the timer if we have pending data */
-				TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
+				TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) {
 					if (chk->whoTo != NULL) {
 						break;
 					}


More information about the svn-src-all mailing list