From dad664031ac1a8122f919314095ef42fb1973366 Mon Sep 17 00:00:00 2001 From: sabetts Date: Sat, 11 Jun 2005 16:31:26 +0000 Subject: (cmd_tmpwm): stop waiting for the child if waitpid produced an error. --- ChangeLog | 5 +++++ src/actions.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b48a6cc..4a47a77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-06-11 Shawn Betts + + * src/actions.c (cmd_tmpwm): stop waiting for the child if waitpid + produced an error. + 2005-04-17 Shawn * src/actions.h: new prototype compat diff --git a/src/actions.c b/src/actions.c index 076c186..e05fa06 100644 --- a/src/actions.c +++ b/src/actions.c @@ -4173,7 +4173,7 @@ cmd_tmpwm (int interactive, struct cmdarg **args) do { child = waitpid (pid, &status, 0); - } while (child != pid); + } while (child != -1 && child != pid); /* Enable our SIGCHLD handler */ set_sig_handler (SIGCHLD, chld_handler); /* Some processes may have quit while our sigchld handler was -- cgit v1.2.3