mirror of https://gitee.com/openkylin/libvirt.git
qemuMonitorGetAllBlockStatsInfo: Use automatic memory management
Signed-off-by: Tim Wiederhake <twiederh@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
00a7e385f1
commit
389049a4db
|
@ -2155,26 +2155,22 @@ qemuMonitorGetAllBlockStatsInfo(qemuMonitor *mon,
|
|||
bool backingChain)
|
||||
{
|
||||
int ret;
|
||||
GHashTable *stats = NULL;
|
||||
g_autoptr(GHashTable) stats = NULL;
|
||||
|
||||
VIR_DEBUG("ret_stats=%p, backing=%d", ret_stats, backingChain);
|
||||
|
||||
QEMU_CHECK_MONITOR(mon);
|
||||
|
||||
if (!(stats = virHashNew(g_free)))
|
||||
goto error;
|
||||
return -1;
|
||||
|
||||
ret = qemuMonitorJSONGetAllBlockStatsInfo(mon, stats, backingChain);
|
||||
|
||||
if (ret < 0)
|
||||
goto error;
|
||||
return -1;
|
||||
|
||||
*ret_stats = stats;
|
||||
*ret_stats = g_steal_pointer(&stats);
|
||||
return ret;
|
||||
|
||||
error:
|
||||
virHashFree(stats);
|
||||
*ret_stats = NULL;
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue