[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 11/14] tests/qtest: Free old machine variable name
From: |
Akihiko Odaki |
Subject: |
[PATCH 11/14] tests/qtest: Free old machine variable name |
Date: |
Wed, 26 Jun 2024 20:06:34 +0900 |
This suppresses LeakSanitizer warnings.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
tests/qtest/libqtest.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/qtest/libqtest.c b/tests/qtest/libqtest.c
index 28683fee28b2..06585104c7af 100644
--- a/tests/qtest/libqtest.c
+++ b/tests/qtest/libqtest.c
@@ -1502,6 +1502,7 @@ static struct MachInfo *qtest_get_machines(const char
*var)
int idx;
if (g_strcmp0(qemu_var, var)) {
+ g_free(qemu_var);
qemu_var = g_strdup(var);
/* new qemu, clear the cache */
--
2.45.2
- Re: [PATCH 05/14] ppc/vof: Fix unaligned FDT property access, (continued)
[PATCH 06/14] hw/virtio: Free vqs before vhost_dev_cleanup(), Akihiko Odaki, 2024/06/26
[PATCH 08/14] memory: Do not create circular reference with subregion, Akihiko Odaki, 2024/06/26
[PATCH 07/14] migration: Free removed SaveStateEntry, Akihiko Odaki, 2024/06/26
[PATCH 09/14] tests/qtest: Use qtest_add_data_func_full(), Akihiko Odaki, 2024/06/26
[PATCH 10/14] tests/qtest: Free unused QMP response, Akihiko Odaki, 2024/06/26
[PATCH 11/14] tests/qtest: Free old machine variable name,
Akihiko Odaki <=
[PATCH 13/14] tests/qtest: Free paths, Akihiko Odaki, 2024/06/26
[PATCH 12/14] tests/qtest: Delete previous boot file, Akihiko Odaki, 2024/06/26
[PATCH 14/14] tests/qtest: Free GThread, Akihiko Odaki, 2024/06/26