Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

PATCH 09/17: complist: Fix leak of string in clnicezputs



Found by Coverity (Issue 1255808).
---
 Src/Zle/complist.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c
index b6e7e30..80e5bf9 100644
--- a/Src/Zle/complist.c
+++ b/Src/Zle/complist.c
@@ -780,6 +780,7 @@ clnicezputs(int do_colors, char *s, int ml)
 	    /* Is the screen full? */
 	    if (ml == mlend - 1 && col == zterm_columns - 1) {
 		mlprinted = ml - oml;
+		free(ums);
 		return 0;
 	    }
 	    if (t < wptr) {
@@ -804,6 +805,7 @@ clnicezputs(int do_colors, char *s, int ml)
 		ml++;
 		if (mscroll && !--mrestlines && (ask = asklistscroll(ml))) {
 		    mlprinted = ml - oml;
+		    free(ums);
 		    return ask;
 		}
 		col -= zterm_columns;
-- 
2.2.0.GIT



Messages sorted by: Reverse Date, Date, Thread, Author