| Anonymous | Login | Signup for a new account | 11-10-2008 10:58 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
| 0000739 | [BusyBox] Other | major | always | 02-19-06 12:11 | 02-19-06 14:51 | ||||
| Reporter | rfelker | View Status | public | ||||||
| Assigned To | BusyBox | ||||||||
| Priority | normal | Resolution | unable to reproduce | ||||||
| Status | closed | Product Version | 1.01 | ||||||
| Summary | 0000739: [PORTABILITY] fuser.c will not compile with pre-C99 compilers | ||||||||
| Description |
In function fuser_kill_pid_list, a statement occurs before mypid is declared. This will fail on most compilers, including odd compilers which may be used in embedded systems and gcc 2.95. The fix is simple; change: pid_list *curr; curr = plist; pid_t mypid = getpid(); to: pid_list *curr = plist; pid_t mypid = getpid(); |
||||||||
| Additional Information |
Listed major because it potentially affects setups used by people other than myself. :) |
||||||||
| Attached Files | |||||||||
|
|
|||||||||
Notes |
|
|
(0001117) vapier 02-19-06 14:51 |
you're using outdated sources, this has already been fixed in svn a month ago |
| Copyright © 2000 - 2006 Mantis Group |