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

Michael Tuexen tuexen at FreeBSD.org
Sun Jan 17 12:05:45 UTC 2016


Author: tuexen
Date: Sun Jan 17 12:05:44 2016
New Revision: 294209
URL: https://svnweb.freebsd.org/changeset/base/294209

Log:
  MFC r291659:
  Minor cleanup. No functional change.

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

Modified: stable/10/sys/netinet/sctp_output.c
==============================================================================
--- stable/10/sys/netinet/sctp_output.c	Sun Jan 17 12:03:59 2016	(r294208)
+++ stable/10/sys/netinet/sctp_output.c	Sun Jan 17 12:05:44 2016	(r294209)
@@ -12069,7 +12069,7 @@ sctp_send_str_reset_req(struct sctp_tcb 
 		oldstream = stcb->asoc.strmout;
 		/* get some more */
 		SCTP_MALLOC(stcb->asoc.strmout, struct sctp_stream_out *,
-		    ((stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out)),
+		    (stcb->asoc.streamoutcnt + adding_o) * sizeof(struct sctp_stream_out),
 		    SCTP_M_STRMO);
 		if (stcb->asoc.strmout == NULL) {
 			uint8_t x;


More information about the svn-src-all mailing list