changeset 22914:54f796fb7cb2 v8.2.2004

patch 8.2.2004: compiler warning for uninitialized variable Commit: https://github.com/vim/vim/commit/b3a01946b30f33e7be0358b3ff2736b94973a659 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 17 19:56:09 2020 +0100 patch 8.2.2004: compiler warning for uninitialized variable Problem: Compiler warning for uninitialized variable. Solution: Initialize "ufunc". (John Marriott)
author Bram Moolenaar <Bram@vim.org>
date Tue, 17 Nov 2020 20:00:04 +0100
parents 3fdbc9315e96
children ccbad7869ee1
files src/version.c src/vim9compile.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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,
--- 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;