mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.1.0273: invalid memory access when using 'incsearch'
Problem: Invalid memory access when using 'incsearch'. Solution: Reset "patlen" when using previous search pattern.
This commit is contained in:
@@ -504,7 +504,11 @@ may_adjust_incsearch_highlighting(
|
|||||||
return FAIL;
|
return FAIL;
|
||||||
|
|
||||||
if (firstc == ccline.cmdbuff[skiplen])
|
if (firstc == ccline.cmdbuff[skiplen])
|
||||||
|
{
|
||||||
pat = last_search_pattern();
|
pat = last_search_pattern();
|
||||||
|
skiplen = 0;
|
||||||
|
patlen = STRLEN(pat);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
pat = ccline.cmdbuff + skiplen;
|
pat = ccline.cmdbuff + skiplen;
|
||||||
|
|
||||||
|
@@ -794,6 +794,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
273,
|
||||||
/**/
|
/**/
|
||||||
272,
|
272,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user