From: Laine Stump Date: Tue, 9 Feb 2021 17:25:31 +0000 (-0500) Subject: openvz: convert VIR_FREE to g_free in other functions that free their arg X-Git-Tag: v7.1.0-rc1~118 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c80efb9b60d07d65d4b6b29b007476867c56e5a3;p=thirdparty%2Flibvirt.git openvz: convert VIR_FREE to g_free in other functions that free their arg Signed-off-by: Laine Stump Reviewed-by: Michal Privoznik --- 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); }