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