From: Bram Moolenaar Date: Thu, 15 Jul 2021 21:44:54 +0000 (+0200) Subject: patch 8.2.3171: another illegal memory access in test X-Git-Tag: v8.2.3171 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f5f1b59d3b98f1a00180cbaf0a12115fb58b573a;p=thirdparty%2Fvim.git patch 8.2.3171: another illegal memory access in test Problem: Another illegal memory access in test. Solution: Check pointer is after the start of the line. --- diff --git a/src/userfunc.c b/src/userfunc.c index d8c943b23d..3dfa680972 100644 --- a/src/userfunc.c +++ b/src/userfunc.c @@ -875,7 +875,7 @@ get_function_body( --end; while (end > p && VIM_ISWHITE(*end)) --end; - if (end > p - 2 && end[-1] == '=' && end[0] == '>') + if (end > p + 2 && end[-1] == '=' && end[0] == '>') { // found trailing "=> {", start of an inline function if (nesting == MAX_FUNC_NESTING - 1) diff --git a/src/version.c b/src/version.c index 5b3a97b439..3caf18dcad 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3171, /**/ 3170, /**/