patch 7.4.1562
Problem:    ":helptags ALL" crashes. (Lcd)
Solution:   Don't free twice.
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 55b0661..b743477 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -6859,7 +6859,6 @@
 	    || filecount == 0)
     {
 	EMSG2("E151: No match: %s", NameBuff);
-	vim_free(dirname);
 	return;
     }
 
diff --git a/src/version.c b/src/version.c
index 501287d..a323d2c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -744,6 +744,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1562,
+/**/
     1561,
 /**/
     1560,