From 9eb3bb2930f804c1d428ea4527e136ac9cd9da43 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 14 Mar 2016 23:45:35 +0100 Subject: [PATCH] patch 7.4.1562 Problem: ":helptags ALL" crashes. (Lcd) Solution: Don't free twice. --- src/ex_cmds.c | 1 - src/version.c | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 55b066152..b7434774a 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -6859,7 +6859,6 @@ do_helptags(char_u *dirname, int add_help_tags) || filecount == 0) { EMSG2("E151: No match: %s", NameBuff); - vim_free(dirname); return; } diff --git a/src/version.c b/src/version.c index 501287d9d..a323d2c0f 100644 --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1562, /**/ 1561, /**/ -- 2.50.1