diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-26 08:20:33 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-26 08:20:33 +0000 |
commit | 470515922c73eaf630d0b2eb561980e1a87150cb (patch) | |
tree | 9d22fb9fabaf37c6cb3ff91ef1cbc11d0d3c5ee6 /Src/Zle | |
parent | 4d656bfb0ee1ef079bd674187fecca871ceafaab (diff) | |
download | zsh-470515922c73eaf630d0b2eb561980e1a87150cb.tar.gz zsh-470515922c73eaf630d0b2eb561980e1a87150cb.tar.xz zsh-470515922c73eaf630d0b2eb561980e1a87150cb.zip |
typo in _history; missing free()s in zle_tricky.c (12067)
Diffstat (limited to 'Src/Zle')
-rw-r--r-- | Src/Zle/zle_tricky.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/Zle/zle_tricky.c b/Src/Zle/zle_tricky.c index bc76ad4cd..a4095b1a2 100644 --- a/Src/Zle/zle_tricky.c +++ b/Src/Zle/zle_tricky.c @@ -604,6 +604,8 @@ docomplete(int lst) ll = strlen((char *) line); cs = ocs; unmetafy_line(); + zsfree(s); + zsfree(qword); return 1; } ocs = cs; |