diff options
| author | Barton E. Schaefer <schaefer@zsh.org> | 2015-04-25 12:40:35 -0700 |
|---|---|---|
| committer | Barton E. Schaefer <schaefer@zsh.org> | 2015-04-25 12:40:35 -0700 |
| commit | fae07f65a3773dd7f8b82ce6169e5ff35766f8f9 (patch) | |
| tree | edcfbc627fea2a516155feeab41f7c1efef09618 | |
| parent | 34961: avoid _message because it aborts completer list too early (diff) | |
| download | zsh-fae07f65a3773dd7f8b82ce6169e5ff35766f8f9.tar zsh-fae07f65a3773dd7f8b82ce6169e5ff35766f8f9.tar.gz zsh-fae07f65a3773dd7f8b82ce6169e5ff35766f8f9.tar.bz2 zsh-fae07f65a3773dd7f8b82ce6169e5ff35766f8f9.tar.lz zsh-fae07f65a3773dd7f8b82ce6169e5ff35766f8f9.tar.xz zsh-fae07f65a3773dd7f8b82ce6169e5ff35766f8f9.tar.zst zsh-fae07f65a3773dd7f8b82ce6169e5ff35766f8f9.zip | |
34965: consistent use of zalloc/zrealloc/zfree
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Src/glob.c | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,7 @@ 2015-04-25 Barton E. Schaefer <schaefer@zsh.org> + * 34965: Src/glob.c: consistent use of zalloc/zrealloc/zfree + * 34961: Completion/Unix/Command/_mkdir: avoid _message because it aborts completer list too early diff --git a/Src/glob.c b/Src/glob.c index ad29223c9..057d44a17 100644 --- a/Src/glob.c +++ b/Src/glob.c @@ -437,7 +437,7 @@ insert(char *s, int checked) matchptr++; if (++matchct == matchsz) { - matchbuf = (Gmatch )realloc((char *)matchbuf, + matchbuf = (Gmatch)zrealloc((char *)matchbuf, sizeof(struct gmatch) * (matchsz *= 2)); matchptr = matchbuf + matchct; @@ -1818,7 +1818,7 @@ zglob(LinkList list, LinkNode np, int nountok) badcshglob |= 1; /* at least one cmd. line expansion failed */ } else if (isset(NOMATCH)) { zerr("no matches found: %s", ostr); - free(matchbuf); + zfree(matchbuf, 0); restore_globstate(saved); return; } else { @@ -1923,7 +1923,7 @@ zglob(LinkList list, LinkNode np, int nountok) } else if (!badcshglob && !isset(NOMATCH) && matchct == 1) { insert_glob_match(list, node, (--matchptr)->name); } - free(matchbuf); + zfree(matchbuf, 0); restore_globstate(saved); } |
