From c408d27a42318227092128b04cca555f78cf703d Mon Sep 17 00:00:00 2001 From: Shannon Zhao Date: Thu, 2 Apr 2015 11:07:06 +0800 Subject: [PATCH] hw/arm/virt: Fix corruption due to double free 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 Signed-off-by: Shannon Zhao Reviewed-by: Stefan Weil Message-id: 1427944026-8968-1-git-send-email-zhaoshenglong@huawei.com Signed-off-by: Peter Maydell --- hw/arm/virt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 7d082e233c..febff22768 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -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);