From: Marc-André Lureau Date: Fri, 22 Apr 2022 10:46:36 +0000 (+0400) Subject: qga: replace pipe() with g_unix_open_pipe(CLOEXEC) X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ed78331ddafeca55f45ce9ce8bec6c7660a6d621;p=qemu.git qga: replace pipe() with g_unix_open_pipe(CLOEXEC) Suggested-by: Daniel P. Berrangé Signed-off-by: Marc-André Lureau Reviewed-by: Daniel P. Berrangé --- diff --git a/qga/commands-posix.c b/qga/commands-posix.c index 77f4672ca2..094487c2c3 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -2529,7 +2529,7 @@ void qmp_guest_set_user_password(const char *username, goto out; } - if (pipe(datafd) < 0) { + if (!g_unix_open_pipe(datafd, FD_CLOEXEC, NULL)) { error_setg(errp, "cannot create pipe FDs"); goto out; }