Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 26 Nov 2008 12:24:18 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r185332 - head/sys/netinet6
Message-ID:  <200811261224.mAQCOIiI055288@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Wed Nov 26 12:24:18 2008
New Revision: 185332
URL: http://svn.freebsd.org/changeset/base/185332

Log:
  Plug a credential leak in case the inpcb is freed by
  in6_pcbfree() instead of in_pcbfree(); missed in r183606.
  
  Reviewed by:	rwatson
  MFC after:	3 days (instantly for 7.1-RC?)

Modified:
  head/sys/netinet6/in6_pcb.c

Modified: head/sys/netinet6/in6_pcb.c
==============================================================================
--- head/sys/netinet6/in6_pcb.c	Wed Nov 26 09:46:35 2008	(r185331)
+++ head/sys/netinet6/in6_pcb.c	Wed Nov 26 12:24:18 2008	(r185332)
@@ -442,6 +442,7 @@ in6_pcbfree(struct inpcb *inp)
 	if (inp->inp_moptions != NULL)
 		inp_freemoptions(inp->inp_moptions);
 	inp->inp_vflag = 0;
+	crfree(inp->inp_cred);
 #ifdef MAC
 	mac_inpcb_destroy(inp);
 #endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811261224.mAQCOIiI055288>