0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.1.0934: invalid memory access in search pattern

Problem:    Invalid memory access in search pattern. (Kuang-che Wu)
Solution:   Check for incomplete equivalence class. (closes #3970)
This commit is contained in:
Bram Moolenaar
2019-02-16 17:07:47 +01:00
parent 6982f42f33
commit 985079c514
3 changed files with 10 additions and 1 deletions

View File

@@ -730,7 +730,7 @@ get_equi_class(char_u **pp)
int l = 1;
char_u *p = *pp;
if (p[1] == '=')
if (p[1] == '=' && p[2] != NUL)
{
if (has_mbyte)
l = (*mb_ptr2len)(p + 2);