mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-02 01:45:17 +00:00
qemuSnapshotRedefine: Fix use of snapshot definition after free
Commit f4aae9726df factored out the snapshot redefinition code into a separate function, but didn't account for the fact that the code is consuming the reference to the snapshot definition and by moving the code away the caller (qemuSnapshotCreateXML) now frees the definition which didn't happen before as we cleared the pointer. Fix it by increasing the reference locally. Later patches will refactor the code so that it's more obvious what's happening. Fixes: f4aae9726df Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2039651 Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
56f4ec311f
commit
59e0d130fe
@ -1709,13 +1709,14 @@ qemuSnapshotCreateWriteMetadata(virDomainObj *vm,
|
||||
static virDomainSnapshotPtr
|
||||
qemuSnapshotRedefine(virDomainObj *vm,
|
||||
virDomainPtr domain,
|
||||
virDomainSnapshotDef *snapdef,
|
||||
virDomainSnapshotDef *snapdeftmp,
|
||||
virQEMUDriver *driver,
|
||||
virQEMUDriverConfig *cfg,
|
||||
unsigned int flags)
|
||||
{
|
||||
virDomainMomentObj *snap = NULL;
|
||||
virDomainSnapshotPtr ret = NULL;
|
||||
g_autoptr(virDomainSnapshotDef) snapdef = virObjectRef(snapdeftmp);
|
||||
|
||||
if (virDomainSnapshotRedefinePrep(vm, &snapdef, &snap,
|
||||
driver->xmlopt,
|
||||
@ -1725,6 +1726,7 @@ qemuSnapshotRedefine(virDomainObj *vm,
|
||||
if (!snap) {
|
||||
if (!(snap = virDomainSnapshotAssignDef(vm->snapshots, snapdef)))
|
||||
return NULL;
|
||||
snapdef = NULL;
|
||||
}
|
||||
/* XXX Should we validate that the redefined snapshot even
|
||||
* makes sense, such as checking that qemu-img recognizes the
|
||||
|
Loading…
x
Reference in New Issue
Block a user