[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 13:31:15 PST 2007


The following issue has been SUBMITTED. 
====================================================================== 
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:                     assigned
====================================================================== 
Date Submitted:             11-09-2007 13:31 PST
Last Modified:              11-09-2007 13:31 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) {...

====================================================================== 

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         
======================================================================



More information about the busybox-cvs mailing list