forked from aniani/vim
patch 7.4.816
Problem: Invalid memory access when doing ":fun X(". Solution: Check for missing ')'. (Dominique Pelle)
This commit is contained in:
parent
73627d0bd4
commit
dd8a5286e1
@ -22557,6 +22557,8 @@ ex_function(eap)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (*p != ')')
|
||||
goto erret;
|
||||
++p; /* skip the ')' */
|
||||
|
||||
/* find extra arguments "range", "dict" and "abort" */
|
||||
|
@ -741,6 +741,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
816,
|
||||
/**/
|
||||
815,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user