changeset 4367:b7f2d97ae2b7 v7.3.932

updated for version 7.3.932 Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable.
author Bram Moolenaar <bram@vim.org>
date Sat, 11 May 2013 13:45:05 +0200
parents e85071312475
children ef6e79cb8f02
files src/option.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/option.c
+++ b/src/option.c
@@ -8847,7 +8847,7 @@ get_option_value_strict(name, numval, st
     void	*from;
 {
     int		opt_idx;
-    char_u	*varp;
+    char_u	*varp = NULL;
     struct vimoption *p;
     int		r = 0;
 
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    932,
+/**/
     931,
 /**/
     930,