summaryrefslogtreecommitdiff
path: root/Src/Zle/compresult.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Zle/compresult.c')
-rw-r--r--Src/Zle/compresult.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/Src/Zle/compresult.c b/Src/Zle/compresult.c
index 19d785bb8..92bb2c803 100644
--- a/Src/Zle/compresult.c
+++ b/Src/Zle/compresult.c
@@ -731,19 +731,17 @@ do_ambiguous(void)
mod_export int
ztat(char *nam, struct stat *buf, int ls)
{
- char b[PATH_MAX], *p;
+ int e;
+ char *b;
if (!(ls ? lstat(nam, buf) : stat(nam, buf)))
return 0;
- for (p = b; p < b + sizeof(b) - 1 && *nam; nam++)
- if (*nam == '\\' && nam[1])
- *p++ = *++nam;
- else
- *p++ = *nam;
- *p = '\0';
+ b = ztrdupstrip(nam, '\\');
- return ls ? lstat(b, buf) : stat(b, buf);
+ e = ls ? lstat(b, buf) : stat(b, buf);
+ zsfree(b);
+ return e;
}
/* Insert a single match in the command line. */