tests: 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:
Laine Stump
2021-02-03 14:35:02 -05:00
parent 6b1595317c
commit 05332bb866
6 changed files with 25 additions and 25 deletions

View File

@@ -174,7 +174,7 @@ virNWFilterRuleInstFree(virNWFilterRuleInstPtr inst)
return;
virHashFree(inst->vars);
VIR_FREE(inst);
g_free(inst);
}