From: Bram Moolenaar Date: Tue, 5 Jan 2016 21:04:49 +0000 (+0100) Subject: patch 7.4.1054 X-Git-Tag: v7.4.1054 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2795e21eaafaeaf95a91667fd411023280d0f902;p=vim patch 7.4.1054 Problem: Illegal memory access. Solution: Check for missing pattern. (Dominique Pelle) --- diff --git a/src/syntax.c b/src/syntax.c index 937fbf186..badb22642 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -5833,6 +5833,11 @@ syn_cmd_sync(eap, syncing) } else if (STRCMP(key, "LINECONT") == 0) { + if (*next_arg == NUL) /* missing pattern */ + { + illegal = TRUE; + break; + } if (curwin->w_s->b_syn_linecont_pat != NULL) { EMSG(_("E403: syntax sync: line continuations pattern specified twice")); diff --git a/src/version.c b/src/version.c index 6cb4c8dbe..23f9ed016 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1054, /**/ 1053, /**/