Larry suggested using concat_path_file() would be an even safer bet
authorEric Andersen <andersen@codepoet.org>
Fri, 4 May 2001 22:04:24 +0000 (22:04 -0000)
committerEric Andersen <andersen@codepoet.org>
Fri, 4 May 2001 22:04:24 +0000 (22:04 -0000)
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

findutils/which.c
libbb/concat_path_file.c
which.c

index 08813c149a56882e865453102374e34b7534a54c..1e5e9eed5569bee54775b9b401e6a1f4c1312eb6 100644 (file)
@@ -53,10 +53,9 @@ extern int which_main(int argc, char **argv)
                argv++;
                found = 0;
                for (i = 0; i < count; i++) {
-                       char buf[strlen(path_n)+strlen(*argv)+2];
-                       strcpy (buf, path_n);
-                       strcat (buf, "/");
-                       strcat (buf, *argv);
+                       char *buf;
+                       buf = concat_path_file(buf, path_n);
+                       buf = concat_path_file(buf, *argv);
                        if (stat (buf, &filestat) == 0
                            && filestat.st_mode & S_IXUSR)
                        {
index d53dc0e2ed934708faccba770103c8ad6593115c..ce92310eaa7a139a4f15f5abd1cce28d1b826c6d 100644 (file)
@@ -15,9 +15,11 @@ extern char *concat_path_file(const char *path, const char *filename)
        int  flg_slash = 1;
 
        l = strlen(path);
-       if(l>0 && path[l-1] == '/')
+       if (l>0 && path[l-1] == '/')
                flg_slash--;
        l += strlen(filename);
+       if (l>0 && filename[0] == '/')
+               flg_slash--;
        outbuf = xmalloc(l+1+flg_slash);
        sprintf(outbuf, (flg_slash ? "%s/%s" : "%s%s"), path, filename);
        return outbuf;
diff --git a/which.c b/which.c
index 08813c149a56882e865453102374e34b7534a54c..1e5e9eed5569bee54775b9b401e6a1f4c1312eb6 100644 (file)
--- a/which.c
+++ b/which.c
@@ -53,10 +53,9 @@ extern int which_main(int argc, char **argv)
                argv++;
                found = 0;
                for (i = 0; i < count; i++) {
-                       char buf[strlen(path_n)+strlen(*argv)+2];
-                       strcpy (buf, path_n);
-                       strcat (buf, "/");
-                       strcat (buf, *argv);
+                       char *buf;
+                       buf = concat_path_file(buf, path_n);
+                       buf = concat_path_file(buf, *argv);
                        if (stat (buf, &filestat) == 0
                            && filestat.st_mode & S_IXUSR)
                        {