changeset 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 a0550466b57b
children f2b69b2eee0c
files src/search.c src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
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)
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    880,
+/**/
     879,
 /**/
     878,