summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-24 16:46:14 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-24 16:46:14 +0000
commit5937c7505f444dd896f336fa0119a93a55ebe9a2 (patch)
tree0a4b41be25a8752a8063d15a63e808afe9df89a8 /src/ex_cmds.c
parentfa3b72348d88343390fbe212cfc230fec1602fc2 (diff)
patch 8.2.3883: crash when switching to other regexp engine failsv8.2.3883
Problem: Crash when switching to other regexp engine fails. Solution: Check for regprog being NULL.
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 10c8e617c9..14045267da 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -4975,6 +4975,8 @@ ex_global(exarg_T *eap)
// a match on this line?
match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
(colnr_T)0, NULL, NULL);
+ if (regmatch.regprog == NULL)
+ break; // re-compiling regprog failed
if ((type == 'g' && match) || (type == 'v' && !match))
{
ml_setmarked(lnum);