mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
qemuMonitorGetBlockInfo: virHashNew
cannot return NULL
Signed-off-by: Tim Wiederhake <twiederh@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
e2f27936f1
commit
317938165c
@ -2103,13 +2103,10 @@ qemuDomainDiskInfoFree(void *value)
|
||||
GHashTable *
|
||||
qemuMonitorGetBlockInfo(qemuMonitor *mon)
|
||||
{
|
||||
g_autoptr(GHashTable) table = NULL;
|
||||
g_autoptr(GHashTable) table = virHashNew(qemuDomainDiskInfoFree);
|
||||
|
||||
QEMU_CHECK_MONITOR_NULL(mon);
|
||||
|
||||
if (!(table = virHashNew(qemuDomainDiskInfoFree)))
|
||||
return NULL;
|
||||
|
||||
if (qemuMonitorJSONGetBlockInfo(mon, table) < 0) {
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user