mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 13:47:13 +03:00
free memory properly in cleanup patch
virsh schedinfo inactive-domain will trigger the problem.
This commit is contained in:
parent
6fee3da262
commit
3c1326385a
@ -945,8 +945,11 @@ remoteDispatchDomainGetSchedulerParameters(struct qemud_server *server ATTRIBUTE
|
||||
cleanup:
|
||||
if (rv < 0) {
|
||||
remoteDispatchError(rerr);
|
||||
for (i = 0 ; i < nparams ; i++)
|
||||
VIR_FREE(ret->params.params_val[i].field);
|
||||
if (ret->params.params_val) {
|
||||
for (i = 0 ; i < nparams ; i++)
|
||||
VIR_FREE(ret->params.params_val[i].field);
|
||||
VIR_FREE(ret->params.params_val);
|
||||
}
|
||||
}
|
||||
if (dom)
|
||||
virDomainFree(dom);
|
||||
|
Loading…
x
Reference in New Issue
Block a user