summaryrefslogtreecommitdiff
path: root/src/stdbuf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdbuf.c')
-rw-r--r--src/stdbuf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stdbuf.c b/src/stdbuf.c
index 007cc2194..38a531375 100644
--- a/src/stdbuf.c
+++ b/src/stdbuf.c
@@ -145,7 +145,6 @@ set_program_path (const char *arg)
}
else
{
- char *path;
char tmppath[PATH_MAX + 1];
ssize_t len = readlink ("/proc/self/exe", tmppath, sizeof (tmppath) - 1);
if (len > 0)
@@ -156,7 +155,7 @@ set_program_path (const char *arg)
else if ((path = getenv ("PATH")))
{
char *dir;
- path = xstrdup (path);
+ char *path = xstrdup (path);
for (dir = strtok (path, ":"); dir != NULL; dir = strtok (NULL, ":"))
{
int req = snprintf (tmppath, sizeof (tmppath), "%s/%s", dir, arg);