diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-04-28 02:20:20 +0000 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2012-05-03 07:04:48 +0200 |
commit | 9cf1f002d7761a1938066379d54a67e8f8b48cc2 (patch) | |
tree | b6c300ac42c48942fa29a7ee6f352c90d9178ec1 /hw/pc_sysfw.c | |
parent | 5c878008ddc1fbdb688dee7cdca93e1fd55845dc (diff) |
hw/pc_sysfw: Fix memory leak
Valgrind reported this memory leak which occured a few times.
Test scenario:
qemu-system-i386 (no arguments), only BIOS started, terminate with
monitor command (quit).
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'hw/pc_sysfw.c')
-rw-r--r-- | hw/pc_sysfw.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/pc_sysfw.c b/hw/pc_sysfw.c index fafdf9b1c1..f0d7c21b5c 100644 --- a/hw/pc_sysfw.c +++ b/hw/pc_sysfw.c @@ -85,6 +85,9 @@ static void pc_fw_add_pflash_drv(void) filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name); opts = drive_add(IF_PFLASH, -1, filename, "readonly=on"); + + g_free(filename); + if (opts == NULL) { return; } |