| Anonymous | Login | Signup for a new account | 11-10-2008 11:17 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 | ||||
| 0001441 | [BusyBox] Other | minor | always | 07-24-07 21:13 | 07-25-07 10:28 | ||||
| Reporter | rockeychu | View Status | public | ||||||
| Assigned To | BusyBox | ||||||||
| Priority | normal | Resolution | fixed | ||||||
| Status | closed | Product Version | svn | ||||||
| Summary | 0001441: [patch] with "ps -ww" since SVN version 18975 | ||||||||
| Description |
Without this patch, "ps -ww" with gets SEGV. Patch as following: Index: procps/ps.c =================================================================== --- procps/ps.c (revision 19256) +++ procps/ps.c (working copy) @@ -406,6 +406,7 @@ { int sz = terminal_width - len; + if( sz > 1024) sz = 1024; char buf[sz + 1]; read_cmdline(buf, sz, p->pid, p->comm); puts(buf); |
||||||||
| Additional Information | |||||||||
| Attached Files | |||||||||
|
|
|||||||||
| Copyright © 2000 - 2006 Mantis Group |