From: Bram Moolenaar Date: Mon, 22 Feb 2016 20:48:30 +0000 (+0100) Subject: patch 7.4.1391 X-Git-Tag: v7.4.1391 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4db20ab091330e460f08651d6052afd0536c507a;p=vim patch 7.4.1391 Problem: Warning for uninitialzed variable. Solution: Set it to zero. (Christian Brabandt) --- diff --git a/src/eval.c b/src/eval.c index 0a12ff9d4..1a569bef1 100644 --- a/src/eval.c +++ b/src/eval.c @@ -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) diff --git a/src/version.c b/src/version.c index 290914906..7af412b03 100644 --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1391, /**/ 1390, /**/