From: Marc-André Lureau Date: Fri, 22 Apr 2022 10:51:47 +0000 (+0400) Subject: io: replace pipe() with g_unix_open_pipe(CLOEXEC) X-Git-Tag: v7.1.0-rc0~119^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d640b59eb3c7925568c5b101f439b0c0e65ea313;p=thirdparty%2Fqemu.git io: 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/io/channel-command.c b/io/channel-command.c index 338da73ade5..539685ea834 100644 --- a/io/channel-command.c +++ b/io/channel-command.c @@ -76,8 +76,8 @@ qio_channel_command_new_spawn(const char *const argv[], } } - if ((!stdinnull && pipe(stdinfd) < 0) || - (!stdoutnull && pipe(stdoutfd) < 0)) { + if ((!stdinnull && !g_unix_open_pipe(stdinfd, FD_CLOEXEC, NULL)) || + (!stdoutnull && !g_unix_open_pipe(stdoutfd, FD_CLOEXEC, NULL))) { error_setg_errno(errp, errno, "Unable to open pipe"); goto error;