# HG changeset patch # User Bram Moolenaar # Date 1605963604 -3600 # Node ID 6426acc72539fa85c759bb07c6ffac7a606caae4 # Parent 0fe441f6d90beccbe029c1ba667a61d05a4d5d12 patch 8.2.2027: Coverity warnts for uninitialized field Commit: https://github.com/vim/vim/commit/9681f713924f4c51fa2ba3d6639639d4b1dba08a Author: Bram Moolenaar Date: Sat Nov 21 13:58:50 2020 +0100 patch 8.2.2027: Coverity warnts for uninitialized field Problem: Coverity warnts for uninitialized field. Solution: Set "v_lock". diff --git a/src/list.c b/src/list.c --- a/src/list.c +++ b/src/list.c @@ -867,6 +867,7 @@ list_concat(list_T *l1, list_T *l2, typv if (l == NULL) return FAIL; tv->v_type = VAR_LIST; + tv->v_lock = 0; tv->vval.v_list = l; if (l1 == NULL) ++l->lv_refcount; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2027, +/**/ 2026, /**/ 2025,