svn commit: r247967 - stable/8/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Thu Mar 7 23:31:33 UTC 2013


Author: tuexen
Date: Thu Mar  7 23:31:32 2013
New Revision: 247967
URL: http://svnweb.freebsd.org/changeset/base/247967

Log:
  MFC r238087:
  
  Iniitialize a variable.

Modified:
  stable/8/sys/netinet/sctp_input.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/netinet/   (props changed)

Modified: stable/8/sys/netinet/sctp_input.c
==============================================================================
--- stable/8/sys/netinet/sctp_input.c	Thu Mar  7 23:28:08 2013	(r247966)
+++ stable/8/sys/netinet/sctp_input.c	Thu Mar  7 23:31:32 2013	(r247967)
@@ -5604,7 +5604,7 @@ sctp_common_input_processing(struct mbuf
 	int cnt_ctrl_ready = 0;
 	struct sctp_inpcb *inp = NULL, *inp_decr = NULL;
 	struct sctp_tcb *stcb = NULL;
-	struct sctp_nets *net;
+	struct sctp_nets *net = NULL;
 
 	SCTP_STAT_INCR(sctps_recvdatagrams);
 #ifdef SCTP_AUDITING_ENABLED


More information about the svn-src-all mailing list