diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-04 22:04:24 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-04 22:04:24 +0000 |
commit | 044a72d0d50bb7380601232d1388453f01fff622 (patch) | |
tree | 18212b9982894cbb0bafa7a675e9cc7f0fa6e3c3 | |
parent | a0ba9f45fb0c9f3e34d5a2b25e45b7e5d5cac9a4 (diff) | |
download | busybox-w32-044a72d0d50bb7380601232d1388453f01fff622.tar.gz busybox-w32-044a72d0d50bb7380601232d1388453f01fff622.tar.bz2 busybox-w32-044a72d0d50bb7380601232d1388453f01fff622.zip |
Larry suggested using concat_path_file() would be an even safer bet
for 'which'. I ageed, so I whipped this up -- which revealed a bug in
concat_path_file. It turns out that that a '/' can be appended from
either the path _or_ the filename, but only the former was checked.
-Erik
-rw-r--r-- | findutils/which.c | 7 | ||||
-rw-r--r-- | libbb/concat_path_file.c | 4 | ||||
-rw-r--r-- | which.c | 7 |
3 files changed, 9 insertions, 9 deletions
diff --git a/findutils/which.c b/findutils/which.c index 08813c149..1e5e9eed5 100644 --- a/findutils/which.c +++ b/findutils/which.c | |||
@@ -53,10 +53,9 @@ extern int which_main(int argc, char **argv) | |||
53 | argv++; | 53 | argv++; |
54 | found = 0; | 54 | found = 0; |
55 | for (i = 0; i < count; i++) { | 55 | for (i = 0; i < count; i++) { |
56 | char buf[strlen(path_n)+strlen(*argv)+2]; | 56 | char *buf; |
57 | strcpy (buf, path_n); | 57 | buf = concat_path_file(buf, path_n); |
58 | strcat (buf, "/"); | 58 | buf = concat_path_file(buf, *argv); |
59 | strcat (buf, *argv); | ||
60 | if (stat (buf, &filestat) == 0 | 59 | if (stat (buf, &filestat) == 0 |
61 | && filestat.st_mode & S_IXUSR) | 60 | && filestat.st_mode & S_IXUSR) |
62 | { | 61 | { |
diff --git a/libbb/concat_path_file.c b/libbb/concat_path_file.c index d53dc0e2e..ce92310ea 100644 --- a/libbb/concat_path_file.c +++ b/libbb/concat_path_file.c | |||
@@ -15,9 +15,11 @@ extern char *concat_path_file(const char *path, const char *filename) | |||
15 | int flg_slash = 1; | 15 | int flg_slash = 1; |
16 | 16 | ||
17 | l = strlen(path); | 17 | l = strlen(path); |
18 | if(l>0 && path[l-1] == '/') | 18 | if (l>0 && path[l-1] == '/') |
19 | flg_slash--; | 19 | flg_slash--; |
20 | l += strlen(filename); | 20 | l += strlen(filename); |
21 | if (l>0 && filename[0] == '/') | ||
22 | flg_slash--; | ||
21 | outbuf = xmalloc(l+1+flg_slash); | 23 | outbuf = xmalloc(l+1+flg_slash); |
22 | sprintf(outbuf, (flg_slash ? "%s/%s" : "%s%s"), path, filename); | 24 | sprintf(outbuf, (flg_slash ? "%s/%s" : "%s%s"), path, filename); |
23 | return outbuf; | 25 | return outbuf; |
@@ -53,10 +53,9 @@ extern int which_main(int argc, char **argv) | |||
53 | argv++; | 53 | argv++; |
54 | found = 0; | 54 | found = 0; |
55 | for (i = 0; i < count; i++) { | 55 | for (i = 0; i < count; i++) { |
56 | char buf[strlen(path_n)+strlen(*argv)+2]; | 56 | char *buf; |
57 | strcpy (buf, path_n); | 57 | buf = concat_path_file(buf, path_n); |
58 | strcat (buf, "/"); | 58 | buf = concat_path_file(buf, *argv); |
59 | strcat (buf, *argv); | ||
60 | if (stat (buf, &filestat) == 0 | 59 | if (stat (buf, &filestat) == 0 |
61 | && filestat.st_mode & S_IXUSR) | 60 | && filestat.st_mode & S_IXUSR) |
62 | { | 61 | { |