svn commit: r200122 - head/usr.sbin/bsnmpd/modules/snmp_pf

Shteryana Shopova syrinx at FreeBSD.org
Sat Dec 5 13:45:22 UTC 2009


Author: syrinx
Date: Sat Dec  5 13:45:21 2009
New Revision: 200122
URL: http://svn.freebsd.org/changeset/base/200122

Log:
  Make sure enough memory is allocated for a struct pft_entry when
  refreshing the list of pf tables.
  
  OKed by:	philip
  MFC after:	1 week

Modified:
  head/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c

Modified: head/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c
==============================================================================
--- head/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c	Sat Dec  5 13:40:51 2009	(r200121)
+++ head/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c	Sat Dec  5 13:45:21 2009	(r200122)
@@ -1104,7 +1104,7 @@ pft_refresh(void)
 	}
 
 	for (i = 0; i < numtbls; i++) {
-		e = malloc(sizeof(struct pfr_tstats));
+		e = malloc(sizeof(struct pft_entry));
 		if (e == NULL)
 			goto err1;
 		e->index = i + 1;


More information about the svn-src-head mailing list