mirror of https://github.com/mirror/busybox.git
syslogd was leaking processes that could forever busyloop. Fixed.
-Erik1_00_stable_10817
parent
e89267c8b3
commit
b2fc5a0647
|
@ -371,8 +371,11 @@ static void doSyslogd (void)
|
|||
continue;
|
||||
}
|
||||
|
||||
if (pid == 0)
|
||||
if (pid == 0) {
|
||||
serveConnection (conn);
|
||||
close (conn);
|
||||
exit( TRUE);
|
||||
}
|
||||
close (conn);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue