svn commit: r238087 - head/sys/netinet

Michael Tuexen tuexen at FreeBSD.org
Tue Jul 3 21:41:20 UTC 2012


Author: tuexen
Date: Tue Jul  3 21:41:19 2012
New Revision: 238087
URL: http://svn.freebsd.org/changeset/base/238087

Log:
  Iniitialize a variable.
  
  MFC after: 3 days

Modified:
  head/sys/netinet/sctp_input.c

Modified: head/sys/netinet/sctp_input.c
==============================================================================
--- head/sys/netinet/sctp_input.c	Tue Jul  3 19:11:38 2012	(r238086)
+++ head/sys/netinet/sctp_input.c	Tue Jul  3 21:41:19 2012	(r238087)
@@ -5604,7 +5604,7 @@ sctp_common_input_processing(struct mbuf
 	int cnt_ctrl_ready = 0;
 	struct sctp_inpcb *inp, *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