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
index a4f0a26..4978cee 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -4672,7 +4672,7 @@
 	    {
 		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
index 86a7808..0889ac4 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    4469,
+/**/
     4468,
 /**/
     4467,