mirror of https://gitee.com/openkylin/libvirt.git
qemuSnapshotDiskContextCleanup: Don't leak snapctxt
The container itself needs to be freed too.
Fixes: 8c2ecdf131
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
5e6d02e0f2
commit
6e514ea27c
|
@ -883,6 +883,8 @@ qemuSnapshotDiskContextCleanup(qemuSnapshotDiskContextPtr snapctxt)
|
|||
virJSONValueFree(snapctxt->actions);
|
||||
|
||||
qemuSnapshotDiskCleanup(snapctxt->dd, snapctxt->ndd, snapctxt->vm, snapctxt->asyncJob);
|
||||
|
||||
g_free(snapctxt);
|
||||
}
|
||||
|
||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(qemuSnapshotDiskContext, qemuSnapshotDiskContextCleanup);
|
||||
|
|
Loading…
Reference in New Issue