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 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/option.c') 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; -- cgit v1.2.3