qemu-ppc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 01/14] hw/core: Free CPUState allocations


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH 01/14] hw/core: Free CPUState allocations
Date: Wed, 26 Jun 2024 14:04:20 +0200
User-agent: Mozilla Thunderbird

On 26/6/24 13:06, Akihiko Odaki wrote:
This suppresses LeakSanitizer warnings.

Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
  hw/core/cpu-common.c | 3 +++
  1 file changed, 3 insertions(+)

diff --git a/hw/core/cpu-common.c b/hw/core/cpu-common.c
index 0f0a247f5642..42f38b01a97f 100644
--- a/hw/core/cpu-common.c
+++ b/hw/core/cpu-common.c
@@ -274,6 +274,9 @@ static void cpu_common_finalize(Object *obj)
  {
      CPUState *cpu = CPU(obj);
+ g_free(cpu->thread);
+    g_free(cpu->halt_cond);
+    g_free(cpu->cpu_ases);
      g_array_free(cpu->gdb_regs, TRUE);
      qemu_lockcnt_destroy(&cpu->in_ioctl_lock);
      qemu_mutex_destroy(&cpu->work_mutex);


Similar patch queued via trivial tree:
https://lore.kernel.org/qemu-devel/3ad18bc590ef28e1526e8053568086b453e7ffde.1718211878.git.quic_mathbern@quicinc.com/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]