79c4324644
Change-Id: I2d302dda68298877c65c99147f5bf22186a59aac
26 lines
796 B
Diff
26 lines
796 B
Diff
From 12706113392018fd7aa6471a3cbada62f0180539 Mon Sep 17 00:00:00 2001
|
|
From: Chuan Zheng <zhengchuan@huawei.com>
|
|
Date: Wed, 9 Feb 2022 12:51:19 +0800
|
|
Subject: [PATCH 13/15] cpu/features: fix bug for memory leakage
|
|
|
|
strList hash not free after used, Fix it.
|
|
---
|
|
target/i386/cpu.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
|
|
index aa9e636800..b9690e3250 100644
|
|
--- a/target/i386/cpu.c
|
|
+++ b/target/i386/cpu.c
|
|
@@ -4752,6 +4752,7 @@ static void x86_cpu_get_unavailable_features(Object *obj, Visitor *v,
|
|
|
|
x86_cpu_list_feature_names(xc->filtered_features, &result);
|
|
visit_type_strList(v, "unavailable-features", &result, errp);
|
|
+ qapi_free_strList(result);
|
|
}
|
|
|
|
/* Check for missing features that may prevent the CPU class from
|
|
--
|
|
2.27.0
|
|
|