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.
diff --git a/src/version.c b/src/version.c
index 7028ffd..ad27946 100644
--- a/src/version.c
+++ b/src/version.c
@@ -739,6 +739,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    326,
+/**/
     325,
 /**/
     324,
diff --git a/src/vim9execute.c b/src/vim9execute.c
index 9ecb865..5c5fcb1 100644
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -436,7 +436,7 @@
     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);