Bug 27380

Summary: possible killall bug
Product: Base System Reporter: sgreear <sgreear>
Component: binAssignee: freebsd-bugs (Nobody) <bugs>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: 4.3-STABLE   
Hardware: Any   
OS: Any   

Description sgreear 2001-05-16 12:10:01 UTC
in killall.c:

        int             mib[3];
<snip>
        mib[0] = CTL_KERN;
        mib[1] = KERN_PROC;
        mib[2] = KERN_PROC_ALL;
        mib[3] = 0;

may cause problems, but I haven't had any.

Fix: 

change
        int             mib[3];
to
        int             mib[4];
Comment 1 Poul-Henning Kamp freebsd_committer freebsd_triage 2001-05-16 12:13:24 UTC
State Changed
From-To: open->closed

Committed to -current, thanks!