mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-26 03:21:44 +03:00
vmx: replace VIR_FREE with g_free in all vir*Free() functions
Signed-off-by: Laine Stump <laine@redhat.com> Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
This commit is contained in:
parent
881bff1cc2
commit
c11f2343c2
@ -650,10 +650,10 @@ virVMXDomainDefNamespaceFree(void *nsdata)
|
||||
struct virVMXDomainDefNamespaceData *data = nsdata;
|
||||
|
||||
if (data) {
|
||||
VIR_FREE(data->datacenterPath);
|
||||
VIR_FREE(data->moref);
|
||||
g_free(data->datacenterPath);
|
||||
g_free(data->moref);
|
||||
}
|
||||
VIR_FREE(data);
|
||||
g_free(data);
|
||||
}
|
||||
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user