From: Yonggang Luo Date: Tue, 15 Sep 2020 12:13:08 +0000 (+0800) Subject: tests: Convert g_free to g_autofree macro in test-logging.c X-Git-Tag: v5.2.0-rc0~109^2~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ed79a1bfb82be118da4014bde007acaaa7a7e7a;p=thirdparty%2Fqemu.git tests: Convert g_free to g_autofree macro in test-logging.c g_autofree are prefer than g_free when possible. Signed-off-by: Yonggang Luo Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Daniel P. Berrangé Message-Id: <20200915121318.247-17-luoyonggang@gmail.com> Signed-off-by: Thomas Huth --- diff --git a/tests/test-logging.c b/tests/test-logging.c index 8a1161de1d2..783fe09a278 100644 --- a/tests/test-logging.c +++ b/tests/test-logging.c @@ -196,7 +196,7 @@ static void rmdir_full(gchar const *root) int main(int argc, char **argv) { - gchar *tmp_path = g_dir_make_tmp("qemu-test-logging.XXXXXX", NULL); + g_autofree gchar *tmp_path = g_dir_make_tmp("qemu-test-logging.XXXXXX", NULL); int rc; g_test_init(&argc, &argv, NULL); @@ -212,6 +212,5 @@ int main(int argc, char **argv) rc = g_test_run(); rmdir_full(tmp_path); - g_free(tmp_path); return rc; }