diff src/ex_docmd.c @ 23205:d998222d314d v8.2.2148

patch 8.2.2148: Vim9: crash when user command doesn't match Commit: https://github.com/vim/vim/commit/1c0aa97827f30e3051ee50a0690555c2c23c0ceb Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 16 21:43:54 2020 +0100 patch 8.2.2148: Vim9: crash when user command doesn't match Problem: Vim9: crash when user command doesn't match. Solution: Adjust command index. (closes https://github.com/vim/vim/issues/7479)
author Bram Moolenaar <Bram@vim.org>
date Wed, 16 Dec 2020 21:45:06 +0100
parents ea43f4117d06
children a789a688e37d
line wrap: on
line diff
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -3520,7 +3520,7 @@ find_ex_command(
 		++p;
 	    p = find_ucmd(eap, p, full, NULL, NULL);
 	}
-	if (p == eap->cmd)
+	if (p == NULL || p == eap->cmd)
 	    eap->cmdidx = CMD_SIZE;
     }