# HG changeset patch # User Bram Moolenaar # Date 1368272705 -7200 # Node ID b7f2d97ae2b7442c46c48ef36d9e33c3ddd34db7 # Parent e85071312475dff10c45a7e9d911ec1be48293e2 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 --- 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; diff --git a/src/version.c b/src/version.c --- 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,