patch 8.2.0498: Coverity complains about uninitialized field

Problem:    Coverity complains about uninitialized field.
Solution:   Initialize the whole typval_T.
diff --git a/src/vim9compile.c b/src/vim9compile.c
index a4e9eab..bf87b6f 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -4147,7 +4147,7 @@
 	    return FAIL;
 
 	// get the second variable
-	tv2.v_type = VAR_UNKNOWN;
+	init_tv(&tv2);
 	*arg = skipwhite(p + len);
 	if (evaluate_const_expr7(arg, cctx, &tv2) == FAIL
 						   || tv2.v_type != VAR_STRING)