Author: syrinx
Date: Sat Dec 12 20:26:11 2009
New Revision: 200446
URL: http://svn.freebsd.org/changeset/base/200446

Log:
  MFC r200122
  
  Make sure enough memory is allocated for a struct pft_entry when
  refreshing the list of pf tables.

Modified:
  stable/8/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c
Directory Properties:
  stable/8/usr.sbin/bsnmpd/   (props changed)

Modified: stable/8/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c
==============================================================================
--- stable/8/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c  Sat Dec 12 20:24:12 
2009        (r200445)
+++ stable/8/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c  Sat Dec 12 20:26:11 
2009        (r200446)
@@ -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;
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to