svn commit: r283704 - stable/10/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Fri May 29 11:40:51 UTC 2015


Author: tuexen
Date: Fri May 29 11:40:50 2015
New Revision: 283704
URL: https://svnweb.freebsd.org/changeset/base/283704

Log:
  MFC r275869:
  
  Add a missing break.
  
  Reported by:	Coverity
  CID:		1232014

Modified:
  stable/10/sys/netinet/sctp_pcb.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netinet/sctp_pcb.c
==============================================================================
--- stable/10/sys/netinet/sctp_pcb.c	Fri May 29 11:25:38 2015	(r283703)
+++ stable/10/sys/netinet/sctp_pcb.c	Fri May 29 11:40:50 2015	(r283704)
@@ -6466,6 +6466,7 @@ sctp_load_addresses_from_init(struct sct
 				switch (pr_supported->chunk_types[i]) {
 				case SCTP_ASCONF:
 					peer_supports_asconf = 1;
+					break;
 				case SCTP_ASCONF_ACK:
 					peer_supports_asconf_ack = 1;
 					break;


More information about the svn-src-stable mailing list