mirror of
https://github.com/ipxe/ipxe
synced 2025-12-23 05:21:49 +03:00
convert to zalloc
This commit is contained in:
@@ -215,10 +215,9 @@ int open ( const char *uri_string ) {
|
|||||||
return fd;
|
return fd;
|
||||||
|
|
||||||
/* Allocate and initialise structure */
|
/* Allocate and initialise structure */
|
||||||
file = malloc ( sizeof ( *file ) );
|
file = zalloc ( sizeof ( *file ) );
|
||||||
if ( ! file )
|
if ( ! file )
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
memset ( file, 0, sizeof ( *file ) );
|
|
||||||
file->refcnt.free = posix_file_free;
|
file->refcnt.free = posix_file_free;
|
||||||
file->fd = fd;
|
file->fd = fd;
|
||||||
file->rc = -EINPROGRESS;
|
file->rc = -EINPROGRESS;
|
||||||
|
|||||||
Reference in New Issue
Block a user