From 23084327dc5c2f42e8a1c3e39ec565e344c7f52e Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Thu, 21 Mar 2013 00:23:19 +0100 Subject: like acpi_table_install(), acpi_table_add() should propagate Errors Signed-off-by: Laszlo Ersek Reviewed-by: Anthony Liguori Message-id: 1363821803-3380-8-git-send-email-lersek@redhat.com Signed-off-by: Anthony Liguori --- arch_init.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'arch_init.c') diff --git a/arch_init.c b/arch_init.c index 0373a580f8..c2cbc71c31 100644 --- a/arch_init.c +++ b/arch_init.c @@ -1106,8 +1106,13 @@ int qemu_uuid_parse(const char *str, uint8_t *uuid) void do_acpitable_option(const QemuOpts *opts) { #ifdef TARGET_I386 - if (acpi_table_add(opts) < 0) { - fprintf(stderr, "Wrong acpi table provided\n"); + Error *err = NULL; + + acpi_table_add(opts, &err); + if (err) { + fprintf(stderr, "Wrong acpi table provided: %s\n", + error_get_pretty(err)); + error_free(err); exit(1); } #endif -- cgit v1.2.1