All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vmstate: assert that VMStateDescription::fields is not NULL
@ 2026-03-09 22:31 Roman Kiryanov
  2026-03-10 16:31 ` Peter Xu
  0 siblings, 1 reply; 4+ messages in thread
From: Roman Kiryanov @ 2026-03-09 22:31 UTC (permalink / raw)
  To: peterx; +Cc: qemu-devel, whollins, jansene, jpcottin, Roman Kiryanov

The vmstate_save_state_v() function does not
support NULL in VMStateDescription::fields
and will crash if one is provided.

Signed-off-by: Roman Kiryanov <rkir@google.com>
---
 migration/vmstate.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/migration/vmstate.c b/migration/vmstate.c
index 4d28364f7b..5cb173ea25 100644
--- a/migration/vmstate.c
+++ b/migration/vmstate.c
@@ -433,6 +433,7 @@ int vmstate_save_state_v(QEMUFile *f, const VMStateDescription *vmsd,
     ERRP_GUARD();
     int ret = 0;
     const VMStateField *field = vmsd->fields;
+    assert(field);
 
     trace_vmstate_save_state_top(vmsd->name);
 
-- 
2.53.0.851.ga537e3e6e9-goog



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-03-12 20:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-09 22:31 [PATCH] vmstate: assert that VMStateDescription::fields is not NULL Roman Kiryanov
2026-03-10 16:31 ` Peter Xu
2026-03-10 18:44   ` Fabiano Rosas
2026-03-12 20:42     ` Roman Kiryanov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.