mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-18 10:35:20 +00: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;
|
struct virVMXDomainDefNamespaceData *data = nsdata;
|
||||||
|
|
||||||
if (data) {
|
if (data) {
|
||||||
VIR_FREE(data->datacenterPath);
|
g_free(data->datacenterPath);
|
||||||
VIR_FREE(data->moref);
|
g_free(data->moref);
|
||||||
}
|
}
|
||||||
VIR_FREE(data);
|
g_free(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
Loading…
x
Reference in New Issue
Block a user