diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2007-02-02 23:47:47 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-02-02 23:47:47 +0000 |
| commit | b2d709b22e2c291bfdb680f2b10bcbd4e5bd5514 (patch) | |
| tree | a291b03327604834619a0e618ea93e345f905340 | |
| parent | 23143: make =-expansion with metacharacters more consistent (diff) | |
| download | zsh-b2d709b22e2c291bfdb680f2b10bcbd4e5bd5514.tar zsh-b2d709b22e2c291bfdb680f2b10bcbd4e5bd5514.tar.gz zsh-b2d709b22e2c291bfdb680f2b10bcbd4e5bd5514.tar.bz2 zsh-b2d709b22e2c291bfdb680f2b10bcbd4e5bd5514.tar.lz zsh-b2d709b22e2c291bfdb680f2b10bcbd4e5bd5514.tar.xz zsh-b2d709b22e2c291bfdb680f2b10bcbd4e5bd5514.tar.zst zsh-b2d709b22e2c291bfdb680f2b10bcbd4e5bd5514.zip | |
23144: Felix Eckhofer <felix@tribut.de>: NULL pointer in complist.c
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | Src/Zle/complist.c | 3 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2007-02-02 Peter Stephenson <p.w.stephenson@ntlworld.com> + * 23144: Felix Eckhofer <felix@tribut.de>: Src/Zle/complist.c: + NULL pointer when ending interactive search in menu select. + * 23143: Src/string.c, Src/subst.c: =-expansion failed when there were metacharacters in the following string, but still tried to expand it. It now succeeds. diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c index 90ea31f66..e723da0f3 100644 --- a/Src/Zle/complist.c +++ b/Src/Zle/complist.c @@ -2079,6 +2079,9 @@ msearchpop(int *backp) { Menusearch s = msearchstack; + if (!s) + return NULL; + if (s->prev) msearchstack = s->prev; |
