On Fri, Oct 22, 2010 at 2:10 AM, Jonathan Nieder [off-list ref] wrote:
Erik Faye-Lund wrote:
quoted
--- a/daemon.c
+++ b/daemon.c
[...]
quoted
@@ -671,18 +658,26 @@ static void check_dead_children(void)
int status;
pid_t pid;
- while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
+ struct child **cradle, *blanket;
+ for (cradle = &firstborn; (blanket = *cradle);)
+ if ((pid = waitpid(blanket->cld.pid, &status, WNOHANG)) > 1) {
What is this change (> 0 → > 1) about?
Oooh, that's a typo, nice catch! I'll throw in a hot-fix when reposting!