mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
virhostdevtest: Don't leak @mgr->activeSCSIHostdevs
So the hostdev manager has some lists to keep track which devices are active (=assigned to a domain) or inactive. The manager and its lists are allocated in myInit and freed in myCleanup but one of them (activeSCSIHostdevs) was missing. Also, the order in which the cleanup was done doesn't make it easy to spot it, therefore reoder it. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
@@ -73,8 +73,9 @@ myCleanup(void)
|
||||
virFileDeleteTree(mgr->stateDir);
|
||||
|
||||
virObjectUnref(mgr->activePCIHostdevs);
|
||||
virObjectUnref(mgr->inactivePCIHostdevs);
|
||||
virObjectUnref(mgr->activeUSBHostdevs);
|
||||
virObjectUnref(mgr->inactivePCIHostdevs);
|
||||
virObjectUnref(mgr->activeSCSIHostdevs);
|
||||
VIR_FREE(mgr->stateDir);
|
||||
VIR_FREE(mgr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user