diff options
| -rw-r--r-- | src/nvim/ex_cmds.c | 1 | ||||
| -rw-r--r-- | src/nvim/version.c | 2 | 
2 files changed, 2 insertions, 1 deletions
| diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 4d62dd0ff9..4a423269cc 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -4779,6 +4779,7 @@ void ex_helptags(exarg_T *eap)        WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);    if (dirname == NULL || !os_isdir(dirname)) {      EMSG2(_("E150: Not a directory: %s"), eap->arg); +    xfree(dirname);      return;    } diff --git a/src/nvim/version.c b/src/nvim/version.c index 940107ee66..3b75135b72 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -366,7 +366,7 @@ static int included_patches[] = {    // 925,    // 924 NA    // 923 NA -  // 922, +  922,    // 921 NA    // 920 NA    // 919 NA | 
