mirror of https://github.com/ipxe/ipxe.git
convert to zalloc
parent
3414fd8df8
commit
636bd2cd0a
|
@ -653,12 +653,11 @@ static int isapnpbus_probe ( struct root_device *rootdev ) {
|
||||||
|
|
||||||
/* Allocate struct isapnp_device */
|
/* Allocate struct isapnp_device */
|
||||||
if ( ! isapnp )
|
if ( ! isapnp )
|
||||||
isapnp = malloc ( sizeof ( *isapnp ) );
|
isapnp = zalloc ( sizeof ( *isapnp ) );
|
||||||
if ( ! isapnp ) {
|
if ( ! isapnp ) {
|
||||||
rc = -ENOMEM;
|
rc = -ENOMEM;
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
memset ( isapnp, 0, sizeof ( *isapnp ) );
|
|
||||||
isapnp->csn = csn;
|
isapnp->csn = csn;
|
||||||
isapnp->logdev = logdev;
|
isapnp->logdev = logdev;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue