From 2a625db39df5e5e5f72556f0cd4a02005115c50f Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Fri, 22 Sep 2000 22:16:15 +0000 Subject: 12859: dynamically-allocate buffer in ztat(), ztrdupstring() --- Src/Zle/compresult.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'Src/Zle/compresult.c') 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. */ -- cgit 1.4.1