]> granicus.if.org Git - vim/commitdiff
patch 9.0.0435: compiler warning for uninitialized variable v9.0.0435
authorBram Moolenaar <Bram@vim.org>
Sat, 10 Sep 2022 11:36:00 +0000 (12:36 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 10 Sep 2022 11:36:00 +0000 (12:36 +0100)
Problem:    Compiler warning for uninitialized variable.
Solution:   Initialize it.

src/eval.c
src/version.c

index d69abb0172c54be69199c13f449614f6515ed253..db8b4e6c982cb7d836908cd6acc683b4f93589dc 100644 (file)
@@ -1121,7 +1121,7 @@ get_lval(
     var2.v_type = VAR_UNKNOWN;
     while (*p == '[' || (*p == '.' && p[1] != '=' && p[1] != '.'))
     {
-       int r;
+       int r = OK;
 
        if (*p == '.' && lp->ll_tv->v_type != VAR_DICT)
        {
index 7b0edde67f609dd532bede99c01e3be7dd146f9f..29483f3060f6ad1a4573ed8950387343c32c7ed3 100644 (file)
@@ -703,6 +703,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    435,
 /**/
     434,
 /**/