]> granicus.if.org Git - vim/commitdiff
patch 7.4.1391 v7.4.1391
authorBram Moolenaar <Bram@vim.org>
Mon, 22 Feb 2016 20:48:30 +0000 (21:48 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 22 Feb 2016 20:48:30 +0000 (21:48 +0100)
Problem:    Warning for uninitialzed variable.
Solution:   Set it to zero. (Christian Brabandt)

src/eval.c
src/version.c

index 0a12ff9d4bededb672f725f27de64c4b54392446..1a569bef158904bfc29decf5b01f647ddfa506b0 100644 (file)
@@ -9489,7 +9489,7 @@ f_asin(typval_T *argvars, typval_T *rettv)
     static void
 f_atan(typval_T *argvars, typval_T *rettv)
 {
-    float_T    f;
+    float_T    f = 0.0;
 
     rettv->v_type = VAR_FLOAT;
     if (get_float_arg(argvars, &f) == OK)
index 2909149066449e20a221a2f8610cc1a4ddf3b1d5..7af412b03b82a5352913b39d45c81fc87607d358 100644 (file)
@@ -748,6 +748,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1391,
 /**/
     1390,
 /**/