]> xenbits.xensource.com Git - libvirt.git/commitdiff
tests: replace VIR_FREE with g_free in all *Dispose() functions
authorLaine Stump <laine@redhat.com>
Wed, 3 Feb 2021 20:15:50 +0000 (15:15 -0500)
committerLaine Stump <laine@redhat.com>
Fri, 5 Feb 2021 05:22:09 +0000 (00:22 -0500)
Signed-off-by: Laine Stump <laine@redhat.com>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
tests/virfilecachetest.c

index 34e0d0ab2f5d5a653d14ac1ee0a811fa2963434b..4d65c0c6ce4137c4b895cc99870be0b52d16b456 100644 (file)
@@ -43,7 +43,7 @@ static void
 testFileCacheObjDispose(void *opaque)
 {
     testFileCacheObjPtr obj = opaque;
-    VIR_FREE(obj->data);
+    g_free(obj->data);
 }