From 85785b7b870e1aff3a8eca29024c37da171b1931 Mon Sep 17 00:00:00 2001 From: Laine Stump Date: Wed, 3 Feb 2021 15:14:51 -0500 Subject: [PATCH] logging: replace VIR_FREE with g_free in all *Dispose() functions Signed-off-by: Laine Stump Reviewed-by: Daniel Henrique Barboza --- src/logging/log_handler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.47.2