Message ID | f08d7b04-9897-36fa-debd-c650dde3559f@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/hmp.c b/hmp.c index 0ed1157c2c3a..c057be49a5ce 100644 --- a/hmp.c +++ b/hmp.c @@ -2580,9 +2580,11 @@ void hmp_hotpluggable_cpus(Monitor *mon, const QDict *qdict) void hmp_info_vm_generation_id(Monitor *mon, const QDict *qdict) { - GuidInfo *info = qmp_query_vm_generation_id(NULL); + Error *err = NULL; + GuidInfo *info = qmp_query_vm_generation_id(&err); if (info) { monitor_printf(mon, "%s\n", info->guid); } + hmp_handle_error(mon, &err); qapi_free_GuidInfo(info);