mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.3734: Vim9: crash when no pattern match found
Problem: Vim9: crash when no pattern match found. Solution: Check for error.
This commit is contained in:
@@ -753,6 +753,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 */
|
||||||
|
/**/
|
||||||
|
3734,
|
||||||
/**/
|
/**/
|
||||||
3733,
|
3733,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -1785,6 +1785,8 @@ exec_instructions(ectx_T *ectx)
|
|||||||
ea.addr_type = ADDR_LINES;
|
ea.addr_type = ADDR_LINES;
|
||||||
ea.cmd = iptr->isn_arg.string;
|
ea.cmd = iptr->isn_arg.string;
|
||||||
parse_cmd_address(&ea, &error, FALSE);
|
parse_cmd_address(&ea, &error, FALSE);
|
||||||
|
if (ea.cmd == NULL)
|
||||||
|
goto on_error;
|
||||||
if (error == NULL)
|
if (error == NULL)
|
||||||
error = ex_range_without_command(&ea);
|
error = ex_range_without_command(&ea);
|
||||||
if (error != NULL)
|
if (error != NULL)
|
||||||
|
Reference in New Issue
Block a user