patch 8.2.0210: Coverity complains about uninitialized field
Problem: Coverity complains about uninitialized field.
Solution: Initialize the field.
diff --git a/src/version.c b/src/version.c
index aae2526..5326281 100644
--- a/src/version.c
+++ b/src/version.c
@@ -743,6 +743,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 210,
+/**/
209,
/**/
208,
diff --git a/src/vim9compile.c b/src/vim9compile.c
index d7c7c8b..117bfd2 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -3678,6 +3678,7 @@
// eval the next expression
*arg = skipwhite(p + 2);
tv2.v_type = VAR_UNKNOWN;
+ tv2.v_lock = 0;
if ((opchar == '|' ? evaluate_const_expr3(arg, cctx, &tv2)
: evaluate_const_expr7(arg, cctx, &tv2)) == FAIL)
{