svn commit: r259387 - stable/9/sys/netipsec

Andrey V. Elsukov ae at FreeBSD.org
Sat Dec 14 04:27:29 UTC 2013


Author: ae
Date: Sat Dec 14 04:27:28 2013
New Revision: 259387
URL: http://svnweb.freebsd.org/changeset/base/259387

Log:
  MFC r257987:
    Initialize prot variable.
  
    PR:		177417

Modified:
  stable/9/sys/netipsec/ipsec_input.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/netipsec/ipsec_input.c
==============================================================================
--- stable/9/sys/netipsec/ipsec_input.c	Sat Dec 14 04:24:50 2013	(r259386)
+++ stable/9/sys/netipsec/ipsec_input.c	Sat Dec 14 04:27:28 2013	(r259387)
@@ -602,6 +602,7 @@ ipsec6_common_input_cb(struct mbuf *m, s
 	ip6->ip6_plen = htons(m->m_pkthdr.len - sizeof(struct ip6_hdr));
 
 	/* Save protocol */
+	prot = 0;
 	m_copydata(m, protoff, 1, (unsigned char *) &prot);
 
 #ifdef notyet


More information about the svn-src-stable-9 mailing list