mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-19 08:02:15 -06:00
hw/nios2:fix leak of fdevice tree blob
The device tree blob returned by load_device_tree is malloced. We should free it after cpu_physical_memory_write(). Reported-by: Euler Robot <euler.robot@huawei.com> Signed-off-by: Chen Qun <kuhn.chenqun@huawei.com> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20200218091154.21696-2-kuhn.chenqun@huawei.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
b18ee6a217
commit
757ca9b81a
1 changed files with 1 additions and 0 deletions
|
@ -109,6 +109,7 @@ static int nios2_load_dtb(struct nios2_boot_info bi, const uint32_t ramsize,
|
||||||
}
|
}
|
||||||
|
|
||||||
cpu_physical_memory_write(bi.fdt, fdt, fdt_size);
|
cpu_physical_memory_write(bi.fdt, fdt, fdt_size);
|
||||||
|
g_free(fdt);
|
||||||
return fdt_size;
|
return fdt_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue