Re: [libvirt PATCH v2 22/24] qemu: pass pointers instead of copying objects for qemuFirmware*FreeContent()

2021-02-04 Thread Daniel Henrique Barboza
On 2/4/21 12:57 AM, Laine Stump wrote: These functions all cooperate to free memory pointed to by a single object that contains (doesn't *point to*, but acutally contains) s/acutally/actually several sub-objects. They were written to send copies of these sub-objects to subordinate

[libvirt PATCH v2 22/24] qemu: pass pointers instead of copying objects for qemuFirmware*FreeContent()

2021-02-03 Thread Laine Stump
These functions all cooperate to free memory pointed to by a single object that contains (doesn't *point to*, but acutally contains) several sub-objects. They were written to send copies of these sub-objects to subordinate functions, rather than just sending pointers to the sub-objects. Let's