]> granicus.if.org Git - vim/commitdiff
patch 8.1.0963: illegal memory access when using 'incsearch' v8.1.0963
authorBram Moolenaar <Bram@vim.org>
Thu, 21 Feb 2019 15:25:50 +0000 (16:25 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 21 Feb 2019 15:25:50 +0000 (16:25 +0100)
Problem:    Illegal memory access when using 'incsearch'.
Solution:   Reset highlight_match when changing text. (closes #4022)

src/misc1.c
src/testdir/dumps/Test_incsearch_change_01.dump [new file with mode: 0644]
src/testdir/test_search.vim
src/version.c

index 75f4ab1ef589df13d441c88b6d4c1062253561c2..65d5e9ec54dfdcd5b5065471c2f81efd2f30d52e 100644 (file)
@@ -2854,6 +2854,11 @@ changed(void)
        changed_int();
     }
     ++CHANGEDTICK(curbuf);
+
+#ifdef FEAT_SEARCH_EXTRA
+    // If a pattern is highlighted, the position may now be invalid.
+    highlight_match = FALSE;
+#endif
 }
 
 /*
diff --git a/src/testdir/dumps/Test_incsearch_change_01.dump b/src/testdir/dumps/Test_incsearch_change_01.dump
new file mode 100644 (file)
index 0000000..96d86aa
--- /dev/null
@@ -0,0 +1,9 @@
+|o+0&#ffffff0|n|e| @66
+|x+1&&| +0&&@68
+|t|h|r|e@1| @64
+|~+0#4040ff13&| @68
+|~| @68
+|~| @68
+|~| @68
+|~| @68
+|:+0#0000000&|%|s|/|X> @64
index 0dfea49f65015e9a7881c723b4a5705ecfc6d8a4..5c8c2a31e7828f3378b3ca84c1f3deab09880e06 100644 (file)
@@ -981,6 +981,30 @@ func Test_incsearch_substitute_dump()
   call delete('Xis_subst_script')
 endfunc
 
+func Test_incsearch_with_change()
+  if !has('timers') || !exists('+incsearch') || !CanRunVimInTerminal()
+    return
+  endif
+
+  call writefile([
+       \ 'set incsearch hlsearch scrolloff=0',
+       \ 'call setline(1, ["one", "two ------ X", "three"])',
+       \ 'call timer_start(200, { _ -> setline(2, "x")})',
+       \ ], 'Xis_change_script')
+  let buf = RunVimInTerminal('-S Xis_change_script', {'rows': 9, 'cols': 70})
+  " Give Vim a chance to redraw to get rid of the spaces in line 2 caused by
+  " the 'ambiwidth' check.
+  sleep 100m
+
+  " Highlight X, it will be deleted by the timer callback.
+  call term_sendkeys(buf, ':%s/X')
+  call VerifyScreenDump(buf, 'Test_incsearch_change_01', {})
+  call term_sendkeys(buf, "\<Esc>")
+
+  call StopVimInTerminal(buf)
+  call delete('Xis_change_script')
+endfunc
+
 " Similar to Test_incsearch_substitute_dump() for :sort
 func Test_incsearch_sort_dump()
   if !exists('+incsearch')
index 59a4e029ba435bf5e2b4afa374ea75c450fbfe7c..30a8081f0076ef59b33d4cddfe53f864e65c67fe 100644 (file)
@@ -779,6 +779,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    963,
 /**/
     962,
 /**/