Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Jun 2017 08:15:34 +0000 (UTC)
From:      Michael Tuexen <tuexen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r319396 - stable/11/sys/netinet
Message-ID:  <201706010815.v518FYqo018521@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tuexen
Date: Thu Jun  1 08:15:33 2017
New Revision: 319396
URL: https://svnweb.freebsd.org/changeset/base/319396

Log:
  MFC r313032:
  
  Ensure that the variable bail is always initialized before used.

Modified:
  stable/11/sys/netinet/sctp_output.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/netinet/sctp_output.c
==============================================================================
--- stable/11/sys/netinet/sctp_output.c	Thu Jun  1 08:12:44 2017	(r319395)
+++ stable/11/sys/netinet/sctp_output.c	Thu Jun  1 08:15:33 2017	(r319396)
@@ -7730,9 +7730,9 @@ sctp_fill_outqueue(struct sctp_tcb *stcb,
 	/* must make even word boundary */
 	space_left &= 0xfffffffc;
 	strq = stcb->asoc.ss_functions.sctp_ss_select_stream(stcb, net, asoc);
+	giveup = 0;
+	bail = 0;
 	while ((space_left > 0) && (strq != NULL)) {
-		giveup = 0;
-		bail = 0;
 		moved = sctp_move_to_outqueue(stcb, strq, space_left, frag_point,
 		    &giveup, eeor_mode, &bail, so_locked);
 		stcb->asoc.ss_functions.sctp_ss_scheduled(stcb, net, asoc, strq, moved);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706010815.v518FYqo018521>