From: Bin Meng Date: Tue, 27 Sep 2022 11:05:42 +0000 (+0800) Subject: util/qemu-sockets: Use g_get_tmp_dir() to get the directory for temporary files X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=926a895c2cfcd621373eb86288dd83d08cb53f15;p=qemu.git util/qemu-sockets: Use g_get_tmp_dir() to get the directory for temporary files Replace the existing logic to get the directory for temporary files with g_get_tmp_dir(), which works for win32 too. Signed-off-by: Bin Meng Reviewed-by: Marc-André Lureau Signed-off-by: Daniel P. Berrangé --- diff --git a/util/qemu-sockets.c b/util/qemu-sockets.c index 83f4bd6fd2..0c41ca9e42 100644 --- a/util/qemu-sockets.c +++ b/util/qemu-sockets.c @@ -919,9 +919,8 @@ static int unix_listen_saddr(UnixSocketAddress *saddr, if (saddr->path[0] || abstract) { path = saddr->path; } else { - const char *tmpdir = getenv("TMPDIR"); - tmpdir = tmpdir ? tmpdir : "/tmp"; - path = pathbuf = g_strdup_printf("%s/qemu-socket-XXXXXX", tmpdir); + path = pathbuf = g_strdup_printf("%s/qemu-socket-XXXXXX", + g_get_tmp_dir()); } pathlen = strlen(path);