mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.1.0907: CI tests on AppVeyor are failing
Problem: CI tests on AppVeyor are failing. Solution: Reduce the recursiveness limit for regexp.
This commit is contained in:
parent
e1ed53f3f9
commit
5382f12c91
@ -4315,7 +4315,7 @@ addstate(
|
|||||||
|
|
||||||
// This function is called recursively. When the depth is too much we run
|
// This function is called recursively. When the depth is too much we run
|
||||||
// out of stack and crash, limit recursiveness here.
|
// out of stack and crash, limit recursiveness here.
|
||||||
if (++depth >= 10000 || subs == NULL)
|
if (++depth >= 5000 || subs == NULL)
|
||||||
{
|
{
|
||||||
--depth;
|
--depth;
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -783,6 +783,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 */
|
||||||
|
/**/
|
||||||
|
907,
|
||||||
/**/
|
/**/
|
||||||
906,
|
906,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user