[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 08/15] migration: Free removed SaveStateEntry
From: |
Akihiko Odaki |
Subject: |
[PATCH v2 08/15] migration: Free removed SaveStateEntry |
Date: |
Thu, 27 Jun 2024 22:37:51 +0900 |
This fixes LeakSanitizer warnings.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
---
migration/savevm.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/migration/savevm.c b/migration/savevm.c
index c621f2359ba3..10b261823b7c 100644
--- a/migration/savevm.c
+++ b/migration/savevm.c
@@ -874,6 +874,8 @@ int vmstate_replace_hack_for_ppc(VMStateIf *obj, int
instance_id,
if (se) {
savevm_state_handler_remove(se);
+ g_free(se->compat);
+ g_free(se);
}
return vmstate_register(obj, instance_id, vmsd, opaque);
}
--
2.45.2
- [PATCH v2 04/15] hw/isa/vt82c686: Define a GPIO line between vt82c686 and i8259, (continued)
- [PATCH v2 05/15] spapr: Free stdout path, Akihiko Odaki, 2024/06/27
- [PATCH v2 06/15] ppc/vof: Fix unaligned FDT property access, Akihiko Odaki, 2024/06/27
- [PATCH v2 07/15] hw/virtio: Free vqs after vhost_dev_cleanup(), Akihiko Odaki, 2024/06/27
- [PATCH v2 08/15] migration: Free removed SaveStateEntry,
Akihiko Odaki <=
- [PATCH v2 09/15] memory: Do not create circular reference with subregion, Akihiko Odaki, 2024/06/27
- [PATCH v2 10/15] tests/qtest: Use qtest_add_data_func_full(), Akihiko Odaki, 2024/06/27
- [PATCH v2 11/15] tests/qtest: Free unused QMP response, Akihiko Odaki, 2024/06/27
- [PATCH v2 12/15] tests/qtest: Free old machine variable name, Akihiko Odaki, 2024/06/27
- [PATCH v2 13/15] tests/qtest: Delete previous boot file, Akihiko Odaki, 2024/06/27
- [PATCH v2 15/15] tests/qtest: Free GThread, Akihiko Odaki, 2024/06/27
- [PATCH v2 14/15] tests/qtest: Free paths, Akihiko Odaki, 2024/06/27