From 6ec5d497b6623e612ca6936ac848234725d4fc61 Mon Sep 17 00:00:00 2001 From: "Charles A. Roelli" Date: Sun, 26 Nov 2017 20:18:54 +0100 Subject: [PATCH] * src/process.c (wait_reading_process_output): Deduplicate check. (Bug#29454) --- src/process.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/process.c b/src/process.c index fc46e743328..a4f016fc25b 100644 --- a/src/process.c +++ b/src/process.c @@ -5625,16 +5625,6 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd, } else if (nread == -1 && would_block (errno)) ; -#ifdef WINDOWSNT - /* FIXME: Is this special case still needed? */ - /* Note that we cannot distinguish between no input - available now and a closed pipe. - With luck, a closed pipe will be accompanied by - subprocess termination and SIGCHLD. */ - else if (nread == 0 && !NETCONN_P (proc) && !SERIALCONN_P (proc) - && !PIPECONN_P (proc)) - ; -#endif #ifdef HAVE_PTYS /* On some OSs with ptys, when the process on one end of a pty exits, the other end gets an error reading with -- 2.39.5