diff src/search.c @ 20653:a68591fbb93d v8.2.0880

patch 8.2.0880: leaking memory when using searchcount() Commit: https://github.com/vim/vim/commit/109aece79d1b5f14f6a84ff2ac068cfffebeba80 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 19:08:54 2020 +0200 patch 8.2.0880: leaking memory when using searchcount() Problem: Leaking memory when using searchcount(). Solution: Free the last used search pattern.
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 19:15:03 +0200
parents 3e03edae7e6f
children c7843f009ecf
line wrap: on
line diff
--- a/src/search.c
+++ b/src/search.c
@@ -4147,6 +4147,7 @@ f_searchcount(typval_T *argvars, typval_
     {
 	if (*pattern == NUL)
 	    goto the_end;
+	vim_free(spats[last_idx].pat);
 	spats[last_idx].pat = vim_strsave(pattern);
     }
     if (spats[last_idx].pat == NULL || *spats[last_idx].pat == NUL)