mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 11:35:19 +00:00
domain_conf: fix domain deadlock
If you use public api virConnectListAllDomains() with second parameter set to NULL to get only the number of domains you will lock out all other operations with domains. Introduced by commit2c680804
. Signed-off-by: Pavel Hrdina <phrdina@redhat.com> (cherry picked from commitfc22b2e748
)
This commit is contained in:
parent
35a802639d
commit
31674d08fc
@ -16336,7 +16336,7 @@ virDomainListPopulate(void *payload,
|
||||
/* just count the machines */
|
||||
if (!data->domains) {
|
||||
data->ndomains++;
|
||||
return;
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (!(dom = virGetDomain(data->conn, vm->def->name, vm->def->uuid))) {
|
||||
|
Loading…
Reference in New Issue
Block a user