From: Bram Moolenaar Date: Mon, 14 Mar 2016 22:45:35 +0000 (+0100) Subject: patch 7.4.1562 X-Git-Tag: v7.4.1562 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9eb3bb2930f804c1d428ea4527e136ac9cd9da43;p=vim 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 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, /**/