Skip to content
Snippets Groups Projects
Commit c19b4b50 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.1126

Problem:    Compiler warning for unitialized variable. (Tony Mechelynck)
Solution:   Assign something to the variable.
parent 973fced7
No related merge requests found
......@@ -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)
......
......@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1126,
/**/
1125,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment