patch 8.2.3883: crash when switching to other regexp engine fails
Problem: Crash when switching to other regexp engine fails.
Solution: Check for regprog being NULL.
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 10c8e61..1404526 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -4975,6 +4975,8 @@
// a match on this line?
match = vim_regexec_multi(®match, 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);
diff --git a/src/version.c b/src/version.c
index a77aa04..05b8120 100644
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 3883,
+/**/
3882,
/**/
3881,