fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit cfe93591977795b81c96a9a91ee2108373aefec1 parent 028386120b2b342bf1acd2b1547adf131ceb078e Author: John Hawthorn <john.hawthorn@gmail.com> Date: Sat, 14 Jan 2017 18:18:23 -0800 Fix memory leak of job Diffstat:
| M | src/choices.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/choices.c b/src/choices.c @@ -241,6 +241,7 @@ void choices_search(choices_t *c, const char *search) { pthread_mutex_destroy(&job->lock); free(workers); + free(job); if(*search) { qsort(c->results, c->available, sizeof(struct scored_result), cmpchoice);