* Increase buffer size for path checking to normal limit PATH_MAX+1
This commit is contained in:
@ -454,8 +454,8 @@ int readproc(int do_stat)
|
||||
PROC *p, *n;
|
||||
struct dirent *d;
|
||||
struct stat st;
|
||||
char path[256];
|
||||
char buf[256];
|
||||
char path[PATH_MAX+1];
|
||||
char buf[PATH_MAX+1];
|
||||
char *s, *q;
|
||||
unsigned long startcode, endcode;
|
||||
int pid, f;
|
||||
|
Reference in New Issue
Block a user