<div dir="ltr"><div dir="ltr">In module procps-ng-3.3.15, source skill.c, function check_proc<div>char buf[128];</div><div><br></div><div>This buffer is too small to read /proc/<pid>/stat</div><div>The code requires the whole file to be read:</div><div>         len = read(fd, buf, sizeof(buf));</div><div>        if (len <= 0 || (size_t)len >= sizeof(buf))</div><div>                goto closure;</div><div><br></div><div>Fix I used is to increase to 256 bytes.</div><div>Worked for me.</div></div></div>