0021-pwdx: Fix a misleading comment.

It sounds like an off-by-one, but the code itself is correct.
This commit is contained in:
Qualys Security Advisory 1970-01-01 00:00:00 +00:00 committed by Craig Small
parent 73008f26ea
commit f69d54f05b
1 changed files with 1 additions and 1 deletions

2
pwdx.c
View File

@ -104,7 +104,7 @@ int main(int argc, char *argv[])
for (i = 0; i < argc; i++) {
char *s;
ssize_t len, buflen;
/* Constant 10 is the length of strings "/proc/" + "/cwd" + 1 */
/* Constant 10 is the length of strings "/proc/" + "/cwd" */
char *buf;
buflen = 10 + strlen(argv[i]) + 1;
buf = xmalloc(buflen);