[BusyBox 0001584]: svn 20071109 init.c fork bug causes launching all inittab processes concurrently
bugs at busybox.net
bugs at busybox.net
Fri Nov 9 17:59:17 PST 2007
The following issue has been CLOSED
======================================================================
http://busybox.net/bugs/view.php?id=1584
======================================================================
Reported By: fpapa
Assigned To: BusyBox
======================================================================
Project: BusyBox
Issue ID: 1584
Category: Other
Reproducibility: always
Severity: crash
Priority: normal
Status: closed
Resolution: open
Fixed in Version:
======================================================================
Date Submitted: 11-09-2007 13:31 PST
Last Modified: 11-09-2007 17:59 PST
======================================================================
Summary: svn 20071109 init.c fork bug causes launching all
inittab processes concurrently
Description:
init.c line 371:
/* Now fork off another process to just hang around */
pid = fork();
if (pid) {
message(L_LOG | L_CONSOLE, "Can't fork");
_exit(1);
}
should be if (pid < 0) {...
======================================================================
----------------------------------------------------------------------
vda - 11-09-07 17:59
----------------------------------------------------------------------
Applied to svn. Thanks!
Issue History
Date Modified Username Field Change
======================================================================
11-09-07 13:31 fpapa New Issue
11-09-07 13:31 fpapa Status new => assigned
11-09-07 13:31 fpapa Assigned To => BusyBox
11-09-07 17:59 vda Status assigned => closed
11-09-07 17:59 vda Note Added: 0002906
======================================================================
More information about the busybox-cvs
mailing list