summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-04 13:15:10 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-04 13:15:10 +0000
commit01a4dcbceefa99696bd1ef8631c3f7ce9f6e0cc2 (patch)
treede2a21f79b9ffde221094f1aa558e45a394f5b58
parentb579f6ebbfa826d228abec1e1b24c05894517c27 (diff)
downloadvim-git-01a4dcbceefa99696bd1ef8631c3f7ce9f6e0cc2.tar.gz
patch 8.2.3734: Vim9: crash when no pattern match foundv8.2.3734
Problem: Vim9: crash when no pattern match found. Solution: Check for error.
-rw-r--r--src/version.c2
-rw-r--r--src/vim9execute.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c
index cdc01a3a7..7948ecc2c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3734,
+/**/
3733,
/**/
3732,
diff --git a/src/vim9execute.c b/src/vim9execute.c
index bd7f71e68..2908e55c7 100644
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -1785,6 +1785,8 @@ exec_instructions(ectx_T *ectx)
ea.addr_type = ADDR_LINES;
ea.cmd = iptr->isn_arg.string;
parse_cmd_address(&ea, &error, FALSE);
+ if (ea.cmd == NULL)
+ goto on_error;
if (error == NULL)
error = ex_range_without_command(&ea);
if (error != NULL)