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