mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
conf: domain: Simplify return from backing store parser
Use VIR_STEAL_PTR to remove conditional cleanup.
This commit is contained in:
parent
67a52f709a
commit
8b13c37f0b
@ -8327,12 +8327,11 @@ virDomainDiskBackingStoreParse(xmlXPathContextPtr ctxt,
|
||||
virDomainDiskBackingStoreParse(ctxt, backingStore, flags) < 0)
|
||||
goto cleanup;
|
||||
|
||||
src->backingStore = backingStore;
|
||||
VIR_STEAL_PTR(src->backingStore, backingStore);
|
||||
ret = 0;
|
||||
|
||||
cleanup:
|
||||
if (ret < 0)
|
||||
virStorageSourceFree(backingStore);
|
||||
virStorageSourceFree(backingStore);
|
||||
VIR_FREE(type);
|
||||
VIR_FREE(format);
|
||||
ctxt->node = save_ctxt;
|
||||
|
Loading…
x
Reference in New Issue
Block a user