Hi, > readlink() does not append a NUL byte to the target buffer. Fix it in > the pidns03 and fsstress testcases to avoid wrong test results. <snip> > rval = readlink(name->path, lbuf, lbufsiz); > + if (rval >= 0) > + lbuf[rval] = 0; /* add terminating NUL */ How about using '\0' and leave the comment? Kind regards, Petr