mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 11:08:25 +00:00
toplevel: remove error handling from qemu_malloc() callers (Avi Kivity)
Signed-off-by: Avi Kivity <avi@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6531 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
@@ -43,10 +43,6 @@ void *load_device_tree(const char *filename_path, void *load_addr)
|
||||
|
||||
/* First allocate space in qemu for device tree */
|
||||
dt_file = qemu_mallocz(dt_file_size);
|
||||
if (dt_file == NULL) {
|
||||
printf("Unable to allocate memory in qemu for device tree\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
dt_file_load_size = load_image(filename_path, dt_file);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user