]> git.proxmox.com Git - mirror_qemu.git/commitdiff
hw/arm/virt: Fix corruption due to double free
authorShannon Zhao <shannon.zhao@linaro.org>
Thu, 2 Apr 2015 03:07:06 +0000 (11:07 +0800)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 2 Apr 2015 11:10:36 +0000 (12:10 +0100)
As 4de9a88(hw/arm/virt: Fix memory leak reported by Coverity)
and 6e05a12(arm: fix memory leak) both handle the memory leak
reported by Coverity, this cause qemu corruption due to
double free.

Signed-off-by: Shannon Zhao <zhaoshenglong@huawei.com>
Signed-off-by: Shannon Zhao <shannon.zhao@linaro.org>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Message-id: 1427944026-8968-1-git-send-email-zhaoshenglong@huawei.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
hw/arm/virt.c

index 7d082e233ce38f057912aac3717e94f0f7597679..febff227681b7a820fa8b4597164296456769625 100644 (file)
@@ -572,7 +572,6 @@ static void create_flash(const VirtBoardInfo *vbi)
             error_report("Could not load ROM image '%s'", bios_name);
             exit(1);
         }
-        g_free(fn);
     }
 
     create_one_flash("virt.flash0", flashbase, flashsize);