diff options
-rw-r--r-- | src/eval.c | 1 | ||||
-rw-r--r-- | src/version.c | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c index 81b37b50fa..6b6d25ac3e 100644 --- a/src/eval.c +++ b/src/eval.c @@ -17436,6 +17436,7 @@ void ex_function(exarg_T *eap) for (i = 0; i < newargs.ga_len; ++i) if (STRCMP(((char_u **)(newargs.ga_data))[i], arg) == 0) { EMSG2(_("E853: Duplicate argument name: %s"), arg); + vim_free(arg); goto erret; } diff --git a/src/version.c b/src/version.c index aff9580a25..a716ff5082 100644 --- a/src/version.c +++ b/src/version.c @@ -202,6 +202,11 @@ static char *(features[]) = { static int included_patches[] = { // Add new patch number below this line + 192, + //191, + //190, + //189, + //188, 187, 186, //185, |