from Folkert van Heusden's code review

This commit is contained in:
albert
2002-12-28 23:57:10 +00:00
parent 33a8de391e
commit 6b4f2559c6
2 changed files with 6 additions and 6 deletions

View File

@ -479,7 +479,7 @@ int open_psdb_message(const char *restrict override, void (*message)(const char
};
struct stat sbuf;
struct utsname uts;
char path[64];
char path[128];
const char **fmt = sysmap_paths;
const char *sm;
@ -509,9 +509,10 @@ int open_psdb_message(const char *restrict override, void (*message)(const char
// finally, search for the System.map file
uname(&uts);
path[sizeof path - 1] = '\0';
do{
int did_ksyms = 0;
snprintf(path, sizeof path, *fmt, uts.release);
snprintf(path, sizeof path - 1, *fmt, uts.release);
if(!stat(path, &sbuf)){
if (did_ksyms++) read_and_parse();
if (sysmap_mmap(path, message)) return 0;