# HG changeset patch # User Bram Moolenaar # Date 1645822804 -3600 # Node ID 7a60eaa9cb26bc6fe361e46c0189f9e91e9a3c95 # Parent ec78ff0c14ce69bb39ed16c1b9b13bd51a831942 patch 8.2.4469: Coverity warns for uninitialized variable Commit: https://github.com/vim/vim/commit/05c1734c4f70a0d7fb2f06444e26afda018f8795 Author: Bram Moolenaar Date: Fri Feb 25 20:57:11 2022 +0000 patch 8.2.4469: Coverity warns for uninitialized variable Problem: Coverity warns for uninitialized variable. Solution: Set the value to zero. diff --git a/src/ex_getln.c b/src/ex_getln.c --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4672,7 +4672,7 @@ get_user_input( { char_u *xp_name; int xp_namelen; - long argt; + long argt = 0; // input() with a third argument: completion rettv->vval.v_string = NULL; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4469, +/**/ 4468, /**/ 4467,