Bash-5.2-rc1 release

This commit is contained in:
Chet Ramey
2022-06-17 09:54:51 -04:00
parent 187661b892
commit 6c1407d2a9
92 changed files with 14083 additions and 14216 deletions
+5 -1
View File
@@ -2655,7 +2655,11 @@ execute_pipeline (command, asynchronous, pipe_in, pipe_out, fds_to_close)
lstdin = wait_for (lastpid, 0);
}
else
lstdin = wait_for_single_pid (lastpid, 0); /* checks bgpids list */
{
lstdin = wait_for_single_pid (lastpid, 0); /* checks bgpids list */
if (lstdin > 256) /* error sentinel */
lstdin = 127;
}
#else
lstdin = wait_for (lastpid, 0);
#endif