diff options
| author | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2014-11-13 19:44:01 +0000 |
|---|---|---|
| committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2014-11-13 19:44:01 +0000 |
| commit | c01a178ece6740f719fef81ecdf9283b5c8b71d5 (patch) | |
| tree | 4d3ef52cb971fda2be9024a5b828a5a1ca4edc34 /Src/utils.c | |
| parent | 33686: set PS1 before pattern-matching for it (diff) | |
| download | zsh-c01a178ece6740f719fef81ecdf9283b5c8b71d5.tar zsh-c01a178ece6740f719fef81ecdf9283b5c8b71d5.tar.gz zsh-c01a178ece6740f719fef81ecdf9283b5c8b71d5.tar.bz2 zsh-c01a178ece6740f719fef81ecdf9283b5c8b71d5.tar.lz zsh-c01a178ece6740f719fef81ecdf9283b5c8b71d5.tar.xz zsh-c01a178ece6740f719fef81ecdf9283b5c8b71d5.tar.zst zsh-c01a178ece6740f719fef81ecdf9283b5c8b71d5.zip | |
Marc Finet: problems with working directory rationalisation.
Ensure the length of the directory is kept up to date.
Abort following symlinks as soon as there's an error.
Diffstat (limited to 'Src/utils.c')
| -rw-r--r-- | Src/utils.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Src/utils.c b/Src/utils.c index e6eb8e6a7..c6e7aed35 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -727,7 +727,7 @@ xsymlinks(char *s) zulong xbuflen = strlen(xbuf); opp = pp = slashsplit(s); - for (; xbuflen < sizeof(xbuf) && *pp; pp++) { + for (; xbuflen < sizeof(xbuf) && *pp && ret >= 0; pp++) { if (!strcmp(*pp, ".")) continue; if (!strcmp(*pp, "..")) { @@ -762,9 +762,13 @@ xsymlinks(char *s) strcpy(xbuf, ""); if (xsymlinks(xbuf3 + 1) < 0) ret = -1; + else + xbuflen = strlen(xbuf); } else if (xsymlinks(xbuf3) < 0) ret = -1; + else + xbuflen = strlen(xbuf); } } freearray(opp); |
