1
0
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:
Peter Krempa 2017-10-06 12:50:30 +02:00
parent 67a52f709a
commit 8b13c37f0b

View File

@ -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;