From c80efb9b60d07d65d4b6b29b007476867c56e5a3 Mon Sep 17 00:00:00 2001 From: Laine Stump Date: Tue, 9 Feb 2021 12:25:31 -0500 Subject: [PATCH] openvz: convert VIR_FREE to g_free in other functions that free their arg Signed-off-by: Laine Stump Reviewed-by: Michal Privoznik --- src/openvz/openvz_conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openvz/openvz_conf.c b/src/openvz/openvz_conf.c index 1783dce233..041a031a3a 100644 --- a/src/openvz/openvz_conf.c +++ b/src/openvz/openvz_conf.c @@ -478,7 +478,7 @@ openvzFreeDriver(struct openvz_driver *driver) virObjectUnref(driver->xmlopt); virObjectUnref(driver->domains); virObjectUnref(driver->caps); - VIR_FREE(driver); + g_free(driver); }