diff options
author | dg <dg@FreeBSD.org> | 1995-05-04 06:57:11 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-05-04 06:57:11 +0000 |
commit | afc1e203457a4a033aab45e835fca9a8cfc6aeff (patch) | |
tree | 4af82697300f00b3895700e2d3d517fc7b4a9ee3 /sys | |
parent | d07e8dc78c2936d50c5e04702d9da353755417d7 (diff) | |
download | FreeBSD-src-afc1e203457a4a033aab45e835fca9a8cfc6aeff.zip FreeBSD-src-afc1e203457a4a033aab45e835fca9a8cfc6aeff.tar.gz |
bzero the malloced pci_devconf structure. This should fix the problem with
several of freefall's recent crashes.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/pci.c | 3 | ||||
-rw-r--r-- | sys/pci/pci.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/pci.c b/sys/dev/pci/pci.c index c3b7dca..e124740 100644 --- a/sys/dev/pci/pci.c +++ b/sys/dev/pci/pci.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pci.c,v 1.20 1995/03/21 23:01:01 se Exp $ +** $Id: pci.c,v 1.21 1995/03/23 06:14:44 davidg Exp $ ** ** General subroutines for the PCI bus. ** pci_configure () @@ -544,6 +544,7 @@ pci_bus_config (void) pdcp = (struct pci_devconf *) malloc (sizeof (struct pci_devconf),M_DEVBUF,M_WAITOK); + bzero(pdcp, sizeof(struct pci_devconf)); pdcp -> pdc_pi.pi_bus = pcicb->pcicb_bus; pdcp -> pdc_pi.pi_device = device; diff --git a/sys/pci/pci.c b/sys/pci/pci.c index c3b7dca..e124740 100644 --- a/sys/pci/pci.c +++ b/sys/pci/pci.c @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pci.c,v 1.20 1995/03/21 23:01:01 se Exp $ +** $Id: pci.c,v 1.21 1995/03/23 06:14:44 davidg Exp $ ** ** General subroutines for the PCI bus. ** pci_configure () @@ -544,6 +544,7 @@ pci_bus_config (void) pdcp = (struct pci_devconf *) malloc (sizeof (struct pci_devconf),M_DEVBUF,M_WAITOK); + bzero(pdcp, sizeof(struct pci_devconf)); pdcp -> pdc_pi.pi_bus = pcicb->pcicb_bus; pdcp -> pdc_pi.pi_device = device; |