svn commit: r261023 - stable/10/sys/netpfil/pf

Gleb Smirnoff glebius at FreeBSD.org
Wed Jan 22 10:45:17 UTC 2014


Author: glebius
Date: Wed Jan 22 10:45:16 2014
New Revision: 261023
URL: http://svnweb.freebsd.org/changeset/base/261023

Log:
  Merge r260377: fix panic on pf_get_translation() failure.
  
  PR:		182557

Modified:
  stable/10/sys/netpfil/pf/pf_lb.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/netpfil/pf/pf_lb.c
==============================================================================
--- stable/10/sys/netpfil/pf/pf_lb.c	Wed Jan 22 10:38:01 2014	(r261022)
+++ stable/10/sys/netpfil/pf/pf_lb.c	Wed Jan 22 10:45:16 2014	(r261023)
@@ -663,6 +663,7 @@ notrans:
 	uma_zfree(V_pf_state_key_z, *nkp);
 	uma_zfree(V_pf_state_key_z, *skp);
 	*skp = *nkp = NULL;
+	*sn = NULL;
 
 	return (NULL);
 }


More information about the svn-src-all mailing list