diff options
-rw-r--r-- | findutils/which.c | 2 | ||||
-rw-r--r-- | which.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/findutils/which.c b/findutils/which.c index 1d7524465..08813c149 100644 --- a/findutils/which.c +++ b/findutils/which.c | |||
@@ -53,7 +53,7 @@ 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)+1+strlen(*argv)]; | 56 | char buf[strlen(path_n)+strlen(*argv)+2]; |
57 | strcpy (buf, path_n); | 57 | strcpy (buf, path_n); |
58 | strcat (buf, "/"); | 58 | strcat (buf, "/"); |
59 | strcat (buf, *argv); | 59 | strcat (buf, *argv); |
@@ -53,7 +53,7 @@ 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)+1+strlen(*argv)]; | 56 | char buf[strlen(path_n)+strlen(*argv)+2]; |
57 | strcpy (buf, path_n); | 57 | strcpy (buf, path_n); |
58 | strcat (buf, "/"); | 58 | strcat (buf, "/"); |
59 | strcat (buf, *argv); | 59 | strcat (buf, *argv); |