# HG changeset patch # User Bram Moolenaar # Date 1605964503 -3600 # Node ID 317462da618ae37f0ce93644a4dce7a40345d3ef # Parent 200234f07132c3dc8869b5bfbc7a932d138d5d3c patch 8.2.2028: Coverity warns for using an uninitialized variable Commit: https://github.com/vim/vim/commit/896ad2c33e562e4b674b7e0efbd43be85a64acc8 Author: Bram Moolenaar Date: Sat Nov 21 14:03:43 2020 +0100 patch 8.2.2028: Coverity warns for using an uninitialized variable Problem: Coverity warns for using an uninitialized variable. Solution: Initialize to NULL. diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -791,7 +791,7 @@ get_lval( listitem_T *ni; char_u *key = NULL; int len; - hashtab_T *ht; + hashtab_T *ht = NULL; int quiet = flags & GLV_QUIET; // Clear everything in "lp". 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 */ /**/ + 2028, +/**/ 2027, /**/ 2026,