patch 7.4.1933
Problem:    Compiler warning about uninitialzed variable. (Yegappan)
Solution:   Give it a dummy value.
diff --git a/src/ex_getln.c b/src/ex_getln.c
index 2f5793a..fc0d995 100644
--- a/src/ex_getln.c
+++ b/src/ex_getln.c
@@ -6318,6 +6318,8 @@
 		    len = vp[3].bv_len;
 		    p = lalloc(len + 2, TRUE);
 		}
+		else
+		    len = 0; /* for picky compilers */
 		if (p != NULL)
 		{
 		    viminfo_history[type][idx].time_set = vp[1].bv_nr;
diff --git a/src/version.c b/src/version.c
index b06ede3..54c135c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1933,
+/**/
     1932,
 /**/
     1931,