svn commit: r252897 - stable/9/sys/netinet
Michael Tuexen
tuexen at FreeBSD.org
Sat Jul 6 20:39:45 UTC 2013
Author: tuexen
Date: Sat Jul 6 20:39:44 2013
New Revision: 252897
URL: http://svnweb.freebsd.org/changeset/base/252897
Log:
MFC r238087:
Initialize a variable.
Modified:
stable/9/sys/netinet/sctp_input.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/netinet/sctp_input.c
==============================================================================
--- stable/9/sys/netinet/sctp_input.c Sat Jul 6 20:35:21 2013 (r252896)
+++ stable/9/sys/netinet/sctp_input.c Sat Jul 6 20:39:44 2013 (r252897)
@@ -5602,7 +5602,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-stable-9
mailing list