syslogd was leaking processes that could forever busyloop. Fixed.
-Erik
This commit is contained in:
@ -371,9 +371,12 @@ static void doSyslogd (void)
|
||||
continue;
|
||||
}
|
||||
|
||||
if (pid == 0)
|
||||
if (pid == 0) {
|
||||
serveConnection (conn);
|
||||
close (conn);
|
||||
exit( TRUE);
|
||||
}
|
||||
close (conn);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user