diff options
| author | Peter Stephenson <pws@zsh.org> | 2015-08-18 17:46:27 +0100 |
|---|---|---|
| committer | Peter Stephenson <pws@zsh.org> | 2015-08-18 17:46:27 +0100 |
| commit | 34be0f1fe5a2f0d240cfbc8956af70245243320a (patch) | |
| tree | 00188d52f0de9872cb0ccd71b83a8594c5b6eedf | |
| parent | 36227: attempt to fix metafication problem with ztrftime. (diff) | |
| download | zsh-34be0f1fe5a2f0d240cfbc8956af70245243320a.tar zsh-34be0f1fe5a2f0d240cfbc8956af70245243320a.tar.gz zsh-34be0f1fe5a2f0d240cfbc8956af70245243320a.tar.bz2 zsh-34be0f1fe5a2f0d240cfbc8956af70245243320a.tar.lz zsh-34be0f1fe5a2f0d240cfbc8956af70245243320a.tar.xz zsh-34be0f1fe5a2f0d240cfbc8956af70245243320a.tar.zst zsh-34be0f1fe5a2f0d240cfbc8956af70245243320a.zip | |
36232: Unmeta needed in chdir() in zchdir()
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Src/compat.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2015-08-18 Peter Stephenson <p.stephenson@samsung.com> + * 36232: Src/compat.c: Unmeta an additional chdir(). + * 36227: Src/Builtins/sched.c, Src/Modules/datetime.c, Src/Modules/stat.c, Src/builtin.c, Src/prompt.c, Src/utils.c, Src/watch.c: real fix for metafication problem in ztrftime: diff --git a/Src/compat.c b/Src/compat.c index b3a8b063c..a0ce1823c 100644 --- a/Src/compat.c +++ b/Src/compat.c @@ -465,7 +465,7 @@ zchdir(char *dir) int currdir = -2; for (;;) { - if (!*dir || chdir(dir) == 0) { + if (!*dir || chdir(unmeta(dir)) == 0) { #ifdef HAVE_FCHDIR if (currdir >= 0) close(currdir); |
