Re: [libvirt PATCH 00/15] eliminate VIR_FREE in all *Dispose() functions

2021-02-04 Thread Daniel Henrique Barboza
On 2/4/21 1:38 AM, Laine Stump wrote: A *Dispose() function is similar to a *Free() function, except that 1) the object is always sent as a void* so it has to be typecast into some other object-specific pointer at the top of the function, and 2) it frees all the resources inside the object,

[libvirt PATCH 00/15] eliminate VIR_FREE in all *Dispose() functions

2021-02-03 Thread Laine Stump
A *Dispose() function is similar to a *Free() function, except that 1) the object is always sent as a void* so it has to be typecast into some other object-specific pointer at the top of the function, and 2) it frees all the resources inside the object, but never frees the object itself (this is