diff options
author | Will Andrews <will@FreeBSD.org> | 2001-01-25 03:40:17 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-01-25 03:40:17 +0000 |
commit | 34bc43d5326431daf05ea3b2c08415e8c577dae2 (patch) | |
tree | d58eb2a19edb8dc5e54927654257ce1b552d8185 /usr.bin/apply | |
parent | 7a726a2dd1a8fbba7e5c2899ed07dfd65ab101f5 (diff) | |
download | src-test2-34bc43d5326431daf05ea3b2c08415e8c577dae2.tar.gz src-test2-34bc43d5326431daf05ea3b2c08415e8c577dae2.zip |
Notes
Diffstat (limited to 'usr.bin/apply')
-rw-r--r-- | usr.bin/apply/apply.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.bin/apply/apply.c b/usr.bin/apply/apply.c index 2224e493234b..0894957c6f6a 100644 --- a/usr.bin/apply/apply.c +++ b/usr.bin/apply/apply.c @@ -146,11 +146,13 @@ main(int argc, char *argv[]) { if ((size_t)offset >= cmdsize) err(1, "snprintf() failed"); p += offset; + cmdsize -= offset; for (i = 1; i <= nargs; i++) { offset = snprintf(p, cmdsize, " %c%d", magic, i); if ((size_t)offset >= cmdsize) err(1, "snprintf() failed"); p += offset; + cmdsize -= offset; } /* @@ -197,6 +199,7 @@ main(int argc, char *argv[]) { if ((size_t)offset >= l) err(1, "snprintf() failed"); q += offset; + l -= offset; } else *q++ = *p; |