summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-11-17 19:56:09 +0100
committerBram Moolenaar <Bram@vim.org>2020-11-17 19:56:09 +0100
commitb3a01946b30f33e7be0358b3ff2736b94973a659 (patch)
tree9fe8fdf1ba666da602412807a79056ee60c3f2e6
parent1efefda623283d941705d8f6ad0e9cfe0ac76079 (diff)
downloadvim-git-b3a01946b30f33e7be0358b3ff2736b94973a659.tar.gz
patch 8.2.2004: compiler warning for uninitialized variablev8.2.2004
Problem: Compiler warning for uninitialized variable. Solution: Initialize "ufunc". (John Marriott)
-rw-r--r--src/version.c2
-rw-r--r--src/vim9compile.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c
index a34e9bfa8..dafd15bf9 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2004,
+/**/
2003,
/**/
2002,
diff --git a/src/vim9compile.c b/src/vim9compile.c
index ebe48548e..c8fb95ec4 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -2626,7 +2626,7 @@ compile_call(
char_u fname_buf[FLEN_FIXED + 1];
char_u *tofree = NULL;
int error = FCERR_NONE;
- ufunc_T *ufunc;
+ ufunc_T *ufunc = NULL;
int res = FAIL;
int is_autoload;