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;
_______________________________________________
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