From: GermanAizek Date: Fri, 22 Aug 2025 20:29:17 +0000 (+0300) Subject: test: replace free to g_free because g_strdup_printf using g_malloc X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7015de516069e65fc10c2d6325d289e343b11e57;p=thirdparty%2Fdbus.git test: replace free to g_free because g_strdup_printf using g_malloc --- diff --git a/test/test-utils-glib.c b/test/test-utils-glib.c index 1d469c7b0..cefd2f5d5 100644 --- a/test/test-utils-glib.c +++ b/test/test-utils-glib.c @@ -953,7 +953,7 @@ test_check_tcp_works (void) "%s", system_message); g_test_skip (skip_message); - free (skip_message); + g_free (skip_message); } if (addrs != NULL)