aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-05-05 19:39:21 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-05-05 19:39:21 +0000
commit32df6b575040d023457292a37720e2c9cdb3be77 (patch)
treeb18a523a463a9ca06a9c85fbb16305c87da22cce
parentafd46d804b5217468b74a7a251b81a7fa195b77e (diff)
downloadbusybox-w32-32df6b575040d023457292a37720e2c9cdb3be77.tar.gz
busybox-w32-32df6b575040d023457292a37720e2c9cdb3be77.tar.bz2
busybox-w32-32df6b575040d023457292a37720e2c9cdb3be77.zip
Steve Grubb writes:
Hi, I just re-reviewed the patch I just sent...and it needed to be BUFSIZ-3 in dos2unix.c . tempFn is BUFSIZ so the last addressable spot it BUFSIZ-1. The loop increments by 2. That's why it should be BUFSIZ-3. Best Regards, Steve Grubb git-svn-id: svn://busybox.net/trunk/busybox@8805 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--coreutils/dos2unix.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c
index c8cebcec7..df0b4f977 100644
--- a/coreutils/dos2unix.c
+++ b/coreutils/dos2unix.c
@@ -64,7 +64,9 @@ static int convert(char *fn, int ConvType)
64 c = strlen(tempFn); 64 c = strlen(tempFn);
65 tempFn[c] = '.'; 65 tempFn[c] = '.';
66 while(1) { 66 while(1) {
67 if (c >=BUFSIZ-2) 67 /* tempFn is BUFSIZ so the last addressable spot it BUFSIZ-1.
68 * The loop increments by 2. So this must check for BUFSIZ-3. */
69 if (c >=BUFSIZ-3)
68 bb_error_msg_and_die("unique name not found"); 70 bb_error_msg_and_die("unique name not found");
69 /* Get some semi random stuff to try and make a 71 /* Get some semi random stuff to try and make a
70 * random filename based (and in the same dir as) 72 * random filename based (and in the same dir as)