mirror of
https://github.com/xzeldon/htop.git
synced 2025-04-05 10:57:07 +03:00
Correction to smaps buffer size passed to smaps path snprintf
This commit is contained in:
parent
f9625cacf0
commit
eef6bc447d
@ -505,9 +505,9 @@ static bool LinuxProcessList_readSmapsFile(LinuxProcess* process, const char* di
|
|||||||
ssize_t nread=0;
|
ssize_t nread=0;
|
||||||
int tmp=0;
|
int tmp=0;
|
||||||
if(haveSmapsRollup) {// only available in Linux 4.14+
|
if(haveSmapsRollup) {// only available in Linux 4.14+
|
||||||
snprintf(buffer, MAX_NAME, "%s/%s/smaps_rollup", dirname, name);
|
snprintf(buffer, PAGE_SIZE-1, "%s/%s/smaps_rollup", dirname, name);
|
||||||
} else {
|
} else {
|
||||||
snprintf(buffer, MAX_NAME, "%s/%s/smaps", dirname, name);
|
snprintf(buffer, PAGE_SIZE-1, "%s/%s/smaps", dirname, name);
|
||||||
}
|
}
|
||||||
int fd = open(buffer, O_RDONLY);
|
int fd = open(buffer, O_RDONLY);
|
||||||
if (fd == -1)
|
if (fd == -1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user