From 4a7d2d3b407ed695450bb7f43166e2f2722a6836 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 21 Feb 2019 16:25:50 +0100 Subject: patch 8.1.0963: illegal memory access when using 'incsearch' Problem: Illegal memory access when using 'incsearch'. Solution: Reset highlight_match when changing text. (closes #4022) --- src/misc1.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/misc1.c') diff --git a/src/misc1.c b/src/misc1.c index 75f4ab1ef..65d5e9ec5 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -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 } /* -- cgit v1.2.1