qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] qio: fix command spawn RDONLY/WRONLY
@ 2022-09-01 10:11 marcandre.lureau
  2022-09-01 10:31 ` Daniel P. Berrangé
  0 siblings, 1 reply; 4+ messages in thread
From: marcandre.lureau @ 2022-09-01 10:11 UTC (permalink / raw)
  To: qemu-devel; +Cc: berrange, Marc-André Lureau

From: Marc-André Lureau <marcandre.lureau@redhat.com>

The in/out handling is inverted, although nothing seemed to notice that yet.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 io/channel-command.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/io/channel-command.c b/io/channel-command.c
index 9f2f4a1793..ed17b44f74 100644
--- a/io/channel-command.c
+++ b/io/channel-command.c
@@ -79,10 +79,10 @@ qio_channel_command_new_spawn(const char *const argv[],
     flags = flags & O_ACCMODE;
 
     if (flags == O_RDONLY) {
-        stdinnull = true;
+        stdoutnull = true;
     }
     if (flags == O_WRONLY) {
-        stdoutnull = true;
+        stdinnull = true;
     }
 
     if (stdinnull || stdoutnull) {
-- 
2.37.2



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-09-01 10:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-01 10:11 [PATCH] qio: fix command spawn RDONLY/WRONLY marcandre.lureau
2022-09-01 10:31 ` Daniel P. Berrangé
2022-09-01 10:47   ` Marc-André Lureau
2022-09-01 10:51     ` Daniel P. Berrangé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).