From 896ad2c33e562e4b674b7e0efbd43be85a64acc8 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 21 Nov 2020 14:03:43 +0100 Subject: [PATCH] patch 8.2.2028: Coverity warns for using an uninitialized variable Problem: Coverity warns for using an uninitialized variable. Solution: Initialize to NULL. --- src/eval.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/eval.c b/src/eval.c index 0365adc89..33976d2a8 100644 --- 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 index 95a0f8ca3..0583f64b9 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2028, /**/ 2027, /**/ -- 2.50.1