From 6800186a03855c1a1c51fb6abb793306851db2ad Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 11 May 2013 13:45:05 +0200 Subject: updated for version 7.3.932 Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable. --- src/option.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'src') 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, /**/ -- cgit v1.2.3