From: Laine Stump Date: Wed, 3 Feb 2021 20:15:50 +0000 (-0500) Subject: tests: replace VIR_FREE with g_free in all *Dispose() functions X-Git-Tag: v7.1.0-rc1~240 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9709c3418e36f90ca86d1a2e20c7c3af7f0bdfc0;p=thirdparty%2Flibvirt.git tests: replace VIR_FREE with g_free in all *Dispose() functions Signed-off-by: Laine Stump Reviewed-by: Daniel Henrique Barboza --- diff --git a/tests/virfilecachetest.c b/tests/virfilecachetest.c index 34e0d0ab2f..4d65c0c6ce 100644 --- a/tests/virfilecachetest.c +++ b/tests/virfilecachetest.c @@ -43,7 +43,7 @@ static void testFileCacheObjDispose(void *opaque) { testFileCacheObjPtr obj = opaque; - VIR_FREE(obj->data); + g_free(obj->data); }