tests: replace VIR_FREE with g_free in all *Dispose() functions

Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
This commit is contained in:
Laine Stump 2021-02-03 15:15:50 -05:00
parent 8334440941
commit 9709c3418e

View File

@ -43,7 +43,7 @@ static void
testFileCacheObjDispose(void *opaque)
{
testFileCacheObjPtr obj = opaque;
VIR_FREE(obj->data);
g_free(obj->data);
}