[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 18/25] tests: Convert g_free to g_autofree macro in test-loggi
From: |
Yonggang Luo |
Subject: |
[PATCH v7 18/25] tests: Convert g_free to g_autofree macro in test-logging.c |
Date: |
Thu, 10 Sep 2020 18:37:18 +0800 |
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>
---
tests/test-logging.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/tests/test-logging.c b/tests/test-logging.c
index 8a1161de1d..783fe09a27 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;
}
--
2.28.0.windows.1
- [PATCH v7 17/25] cirrus: Building freebsd in a single short, Yonggang Luo, 2020/09/10
- [PATCH v7 18/25] tests: Convert g_free to g_autofree macro in test-logging.c,
Yonggang Luo <=
- [PATCH v7 19/25] tests: Fixes test-io-channel-socket.c tests under msys2/mingw, Yonggang Luo, 2020/09/10
- [PATCH v7 20/25] tests: fixes aio-win32 about aio_remove_fd_handler, get it consistence with aio-posix.c, Yonggang Luo, 2020/09/10
- [PATCH v7 21/25] tests: Fixes test-io-channel-file by mask only owner file state mask bits, Yonggang Luo, 2020/09/10
- [PATCH v7 22/25] tests: fix test-util-sockets.c, Yonggang Luo, 2020/09/10
- [PATCH v7 23/25] tests: Fixes test-qdev-global-props.c, Yonggang Luo, 2020/09/10
- [PATCH v7 24/25] rcu: fixes test-logging.c by call drain_call_rcu before rmdir_full, Yonggang Luo, 2020/09/10
- [PATCH v7 25/25] ci: Enable msys2 ci in cirrus, Yonggang Luo, 2020/09/10
- Re: [PATCH v7 17/25] cirrus: Building freebsd in a single short, Thomas Huth, 2020/09/10