changeset 19538:7df9c8df26f1 v8.2.0326

patch 8.2.0326: compiler warning for using uninitialized variable Commit: https://github.com/vim/vim/commit/d5aec0ced17f8f60761128bff32e54ad2d1d57ef Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 27 21:48:51 2020 +0100 patch 8.2.0326: compiler warning for using uninitialized variable Problem: Compiler warning for using uninitialized variable. (Yegappan Lakshmanan) Solution: Do not jump to failed but return.
author Bram Moolenaar <Bram@vim.org>
date Thu, 27 Feb 2020 22:00:03 +0100
parents 3ef67ebe17cc
children a31e293bd464
files src/version.c src/vim9execute.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    326,
+/**/
     325,
 /**/
     324,
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -436,7 +436,7 @@ call_def_function(
     vim_memset(&ectx, 0, sizeof(ectx));
     ga_init2(&ectx.ec_stack, sizeof(typval_T), 500);
     if (ga_grow(&ectx.ec_stack, 20) == FAIL)
-	goto failed;
+	return FAIL;
     ectx.ec_dfunc_idx = ufunc->uf_dfunc_idx;
 
     ga_init2(&ectx.ec_trystack, sizeof(trycmd_T), 10);