mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-01 01:20:00 +02:00
commit bash-20110429 snapshot
This commit is contained in:
+2
-2
@@ -1694,7 +1694,7 @@ cpl_closeall ()
|
||||
{
|
||||
struct cpelement *cpe;
|
||||
|
||||
for (cpe = coproc_list.head; cpe; )
|
||||
for (cpe = coproc_list.head; cpe; cpe = cpe->next)
|
||||
coproc_close (cpe->coproc);
|
||||
}
|
||||
|
||||
@@ -1704,7 +1704,7 @@ cpl_fdchk (fd)
|
||||
{
|
||||
struct cpelement *cpe;
|
||||
|
||||
for (cpe = coproc_list.head; cpe; )
|
||||
for (cpe = coproc_list.head; cpe; cpe = cpe->next)
|
||||
coproc_checkfd (cpe->coproc, fd);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user