about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2007-04-27 16:04:47 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2007-04-27 16:04:47 +0000
commit4b635e7f91d0192dbb811986ae1f4eabffc43f76 (patch)
tree68923c492a853161d8a2bed8ca3bb4d544ea8391 /Src
parentcb01bab6c00ce1b7ba86a9121fabef72b3c20923 (diff)
downloadzsh-4b635e7f91d0192dbb811986ae1f4eabffc43f76.tar.gz
zsh-4b635e7f91d0192dbb811986ae1f4eabffc43f76.tar.xz
zsh-4b635e7f91d0192dbb811986ae1f4eabffc43f76.zip
23337: fix unmetafication for stat() of files in compctl
Diffstat (limited to 'Src')
-rw-r--r--Src/Zle/compctl.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/Src/Zle/compctl.c b/Src/Zle/compctl.c
index 17c8083f0..81f11b423 100644
--- a/Src/Zle/compctl.c
+++ b/Src/Zle/compctl.c
@@ -2188,9 +2188,14 @@ gen_matches_files(int dirs, int execs, int all)
 		if (!test)
 		    continue;
 		if (!all) {
+		    char *ums;
+		    int umlen;
 		    /* We still have to check the file type, so prepare *
 		     * the path buffer by appending the filename.       */
-		    strcpy(q, n);
+		    ums = dupstring(n);
+		    unmetafy(ums, &umlen);
+		    memcpy(q, ums, umlen);
+		    q[umlen] = '\0';
 		    /* And do the stat. */
 		    if (stat(p, &buf) < 0)
 			continue;