From: Laine Stump Date: Wed, 3 Feb 2021 20:14:51 +0000 (-0500) Subject: logging: replace VIR_FREE with g_free in all *Dispose() functions X-Git-Tag: v7.1.0-rc1~245 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85785b7b870e1aff3a8eca29024c37da171b1931;p=thirdparty%2Flibvirt.git logging: replace VIR_FREE with g_free in all *Dispose() functions Signed-off-by: Laine Stump Reviewed-by: Daniel Henrique Barboza --- diff --git a/src/logging/log_handler.c b/src/logging/log_handler.c index 45a4763525..a77c1e0250 100644 --- a/src/logging/log_handler.c +++ b/src/logging/log_handler.c @@ -352,7 +352,7 @@ virLogHandlerDispose(void *obj) handler->inhibitor(false, handler->opaque); virLogHandlerLogFileFree(handler->files[i]); } - VIR_FREE(handler->files); + g_free(handler->files); }