patch 8.2.1117: Coverity warns for unsing unitialized field
Problem: Coverity warns for unsing unitialized field.
Solution: Initialize v_lock.
diff --git a/src/if_lua.c b/src/if_lua.c
index 20cdbbc..9852c61 100644
--- a/src/if_lua.c
+++ b/src/if_lua.c
@@ -576,6 +576,8 @@
{
int status = OK;
+ tv->v_lock = 0;
+
switch (lua_type(L, pos))
{
case LUA_TBOOLEAN:
diff --git a/src/version.c b/src/version.c
index 54469ff..2d94559 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1117,
+/**/
1116,
/**/
1115,