]> git.proxmox.com Git - mirror_qemu.git/commitdiff
dump: Fix g_array_unref(NULL) in dump-guest-memory
authorMarkus Armbruster <armbru@redhat.com>
Tue, 31 Oct 2023 10:45:28 +0000 (11:45 +0100)
committerMarc-André Lureau <marcandre.lureau@redhat.com>
Thu, 2 Nov 2023 14:40:50 +0000 (18:40 +0400)
When dump_init()'s check for non-zero @length fails, dump_cleanup()
passes null s->string_table_buf to g_array_unref(), which spews "GLib:
g_array_unref: assertion 'array' failed" to stderr.

Guard the g_array_unref().

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20231031104531.3169721-3-armbru@redhat.com>

dump/dump.c

index 9cdb4a2bf85e8523db45cce647ab9ba9b91d6b61..24c829e705d98ed5be29e8d741bf0305c48b455e 100644 (file)
@@ -100,7 +100,7 @@ static int dump_cleanup(DumpState *s)
     memory_mapping_list_free(&s->list);
     close(s->fd);
     g_free(s->guest_note);
-    g_array_unref(s->string_table_buf);
+    g_clear_pointer(&s->string_table_buf, g_array_unref);
     s->guest_note = NULL;
     if (s->resume) {
         if (s->detached) {