From: Bram Moolenaar Date: Sat, 11 May 2013 11:45:05 +0000 (+0200) Subject: updated for version 7.3.932 X-Git-Tag: v7.3.932 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6800186a03855c1a1c51fb6abb793306851db2ad;p=thirdparty%2Fvim.git updated for version 7.3.932 Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable. --- diff --git a/src/option.c b/src/option.c index 570c5c84af..cfe464c5b0 100644 --- a/src/option.c +++ b/src/option.c @@ -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; diff --git a/src/version.c b/src/version.c index ad25571562..7c2eb6fe80 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 */ +/**/ + 932, /**/ 931, /**/