diff options
author | Markus Armbruster <armbru@redhat.com> | 2014-12-04 14:46:43 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-12-15 12:21:02 +0100 |
commit | 18fc80553420a3188336baeeb542e9f2d1ada13b (patch) | |
tree | b05ae4bac529cc890b8f3aa60f0f2aacd2e90d64 | |
parent | 18cd2c17b5370369a886155c001da0a7f54bbcca (diff) | |
download | hqemu-18fc80553420a3188336baeeb542e9f2d1ada13b.zip hqemu-18fc80553420a3188336baeeb542e9f2d1ada13b.tar.gz |
x86: Drop superfluous conditionals around g_free()
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | hw/i386/pc_sysfw.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/i386/pc_sysfw.c b/hw/i386/pc_sysfw.c index 75913c5..662d997 100644 --- a/hw/i386/pc_sysfw.c +++ b/hw/i386/pc_sysfw.c @@ -204,9 +204,7 @@ static void old_pc_system_rom_init(MemoryRegion *rom_memory, bool isapc_ram_fw) fprintf(stderr, "qemu: could not load PC BIOS '%s'\n", bios_name); exit(1); } - if (filename) { - g_free(filename); - } + g_free(filename); /* map the last 128KB of the BIOS in ISA space */ isa_bios_size = bios_size; |