提交 b2538b4b 编写于 作者: J Jean-Christophe DUBOIS 提交者: Anthony Liguori

Fix qemu_free use in acpi.c

acpi.c is using free() instead of qemu_free().
Fix it.
Signed-off-by: NJean-Christophe DUBOIS <jcd@tribudubois.net>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 d6318738
......@@ -920,7 +920,7 @@ int acpi_table_add(const char *t)
return 0;
out:
if (acpi_tables) {
free(acpi_tables);
qemu_free(acpi_tables);
acpi_tables = NULL;
}
return -1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册