From 04bf2c822fd3ba20438ec2c51186b0cd438a50f0 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Mon, 18 Sep 2000 03:31:31 +0000 Subject: 12823: use zsh heap in lieu of perm. heap in bin_dot --- Src/builtin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Src/builtin.c') diff --git a/Src/builtin.c b/Src/builtin.c index 7fae149b0..6fa8da6e3 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -3297,25 +3297,25 @@ bin_dot(char *name, char **argv, char *ops, int func) break; } if (!*s || (ret && isset(PATHDIRS) && diddot < 2 && dotdot == 0)) { + pushheap(); /* search path for script */ for (t = path; *t; t++) { if (!(*t)[0] || ((*t)[0] == '.' && !(*t)[1])) { if (diddot) continue; diddot = 1; - buf = ztrdup(arg0); + buf = dupstring(arg0); } else - buf = tricat(*t, "/", arg0); + buf = zhtricat(*t, "/", arg0); s = unmeta(buf); if (access(s, F_OK) == 0 && stat(s, &st) >= 0 && !S_ISDIR(st.st_mode)) { ret = source(enam = buf); - zsfree(buf); break; } - zsfree(buf); } + popheap(); } } /* clean up and return */ -- cgit 1.4.1