From: Bram Moolenaar Date: Wed, 5 Jun 2013 19:23:39 +0000 (+0200) Subject: updated for version 7.3.1126 X-Git-Tag: v7.3.1126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c19b4b50a800c9866df4de0d30a25dc9d9af4939;p=vim updated for version 7.3.1126 Problem: Compiler warning for unitialized variable. (Tony Mechelynck) Solution: Assign something to the variable. --- diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index 947b2e725..189e413ff 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -2580,6 +2580,7 @@ post2nfa(postfix, end, nfa_calc_size) nstate += n; break; } + s = NULL; /* avoid compiler warning */ e1.out = NULL; /* stores list with out1's */ s1 = NULL; /* previous NFA_SPLIT to connect to */ while (n-- > 0) diff --git a/src/version.c b/src/version.c index bd19cfdc7..92fa3d767 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1126, /**/ 1125, /**/