mirror of https://gitee.com/openkylin/libvirt.git
hyperv: use g_autoptr for Msvm_ComputerSystem in hypervConnectNumOfDomains
Signed-off-by: Matt Coleman <matt@datto.com> Reviewed-by: Laine Stump <laine@redhat.com>
This commit is contained in:
parent
e6d09928b6
commit
1274d4e9f6
|
@ -1638,26 +1638,20 @@ hypervConnectListDomains(virConnectPtr conn, int *ids, int maxids)
|
|||
static int
|
||||
hypervConnectNumOfDomains(virConnectPtr conn)
|
||||
{
|
||||
bool success = false;
|
||||
hypervPrivate *priv = conn->privateData;
|
||||
Msvm_ComputerSystem *computerSystemList = NULL;
|
||||
g_autoptr(Msvm_ComputerSystem) computerSystemList = NULL;
|
||||
Msvm_ComputerSystem *computerSystem = NULL;
|
||||
int count = 0;
|
||||
|
||||
if (hypervGetActiveVirtualSystemList(priv, &computerSystemList) < 0)
|
||||
goto cleanup;
|
||||
return -1;
|
||||
|
||||
for (computerSystem = computerSystemList; computerSystem != NULL;
|
||||
computerSystem = computerSystem->next) {
|
||||
++count;
|
||||
}
|
||||
|
||||
success = true;
|
||||
|
||||
cleanup:
|
||||
hypervFreeObject((hypervObject *)computerSystemList);
|
||||
|
||||
return success ? count : -1;
|
||||
return count;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue