# HG changeset patch # User Christian Brabandt # Date 1693892704 -7200 # Node ID 1e649fd371cd8e869d8636a71b35653ef3cdd3f8 # Parent 53c9aecd33e4ae53ed39408c2333ea18c71fea69 patch 9.0.1869: Coverity warns about unitialized var Commit: https://github.com/vim/vim/commit/86eda0780590ea8cac49e2aa3bd50245329d3579 Author: Ernie Rael Date: Tue Sep 5 07:33:48 2023 +0200 patch 9.0.1869: Coverity warns about unitialized var Problem: Coverity warns about unitialized var Solution: initialize it closes: #13029 Signed-off-by: Christian Brabandt Co-authored-by: Ernie Rael diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -1025,7 +1025,7 @@ get_lval( int len; hashtab_T *ht = NULL; int quiet = flags & GLV_QUIET; - int writing; + int writing = 0; int vim9script = in_vim9script(); // Clear everything in "lp". diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -700,6 +700,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1869, +/**/ 1868, /**/ 1867,