aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYonggang Luo <luoyonggang@gmail.com>2020-09-15 20:13:08 +0800
committerThomas Huth <thuth@redhat.com>2020-09-16 08:41:06 +0200
commit4ed79a1bfb82be118da4014bde007acaaa7a7e7a (patch)
tree94c486869ba2c1b34cd3356f5e98a63617bd1cdd
parentd816614ca4f5af89a2b6d50ac840d7b77973f2fc (diff)
downloadqemu-4ed79a1bfb82be118da4014bde007acaaa7a7e7a.zip
qemu-4ed79a1bfb82be118da4014bde007acaaa7a7e7a.tar.gz
qemu-4ed79a1bfb82be118da4014bde007acaaa7a7e7a.tar.bz2
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 <luoyonggang@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20200915121318.247-17-luoyonggang@gmail.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r--tests/test-logging.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test-logging.c b/tests/test-logging.c
index 8a1161d..783fe09 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;
}