1
0
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:
Tim Wiederhake 2021-07-06 14:37:56 +02:00 committed by Michal Privoznik
parent e2f27936f1
commit 317938165c

View File

@ -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;
}