# HG changeset patch # User Christian Brabandt # Date 1457996405 -3600 # Node ID b4850f705181316a1fcdaa1c00f6a81f61d67cb6 # Parent 21c8775575de9bc6aa014798edee9943ea9f9c10 commit https://github.com/vim/vim/commit/9eb3bb2930f804c1d428ea4527e136ac9cd9da43 Author: Bram Moolenaar Date: Mon Mar 14 23:45:35 2016 +0100 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 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -6859,7 +6859,6 @@ do_helptags(char_u *dirname, int add_hel || filecount == 0) { EMSG2("E151: No match: %s", NameBuff); - vim_free(dirname); return; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -744,6 +744,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1562, +/**/ 1561, /**/ 1560,