]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.932 v7.3.932
authorBram Moolenaar <Bram@vim.org>
Sat, 11 May 2013 11:45:05 +0000 (13:45 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 11 May 2013 11:45:05 +0000 (13:45 +0200)
Problem:    Compiler warning for uninitialized variable. (Tony Mechelynck)
Solution:   Initialize the variable.

src/option.c
src/version.c

index 570c5c84af04ec68c69ddc59892839c22e1e831f..cfe464c5b024710ca8d8efca4ea29535a352df10 100644 (file)
@@ -8847,7 +8847,7 @@ get_option_value_strict(name, numval, stringval, opt_type, from)
     void       *from;
 {
     int                opt_idx;
-    char_u     *varp;
+    char_u     *varp = NULL;
     struct vimoption *p;
     int                r = 0;
 
index ad2557156243f217c688ea1e01dcedf99a6d0ddd..7c2eb6fe80aca0de9419a2dffd690e93b7a6b60c 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    932,
 /**/
     931,
 /**/