mirror of
https://github.com/ipxe/ipxe
synced 2025-12-12 06:22:01 +03:00
@@ -245,11 +245,12 @@ static int pcibus_probe ( struct root_device *rootdev ) {
|
|||||||
|
|
||||||
/* Allocate struct pci_device */
|
/* Allocate struct pci_device */
|
||||||
if ( ! pci )
|
if ( ! pci )
|
||||||
pci = zalloc ( sizeof ( *pci ) );
|
pci = malloc ( sizeof ( *pci ) );
|
||||||
if ( ! pci ) {
|
if ( ! pci ) {
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
memset ( pci, 0, sizeof ( *pci ) );
|
||||||
pci->bus = bus;
|
pci->bus = bus;
|
||||||
pci->devfn = devfn;
|
pci->devfn = devfn;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user