From 2118a302957dea352174722bf355376901f49b9b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 22 Nov 2019 19:29:45 +0100 Subject: [PATCH] patch 8.1.2335: error message for function arguments may use NULL pointer Problem: Error message for function arguments may use NULL pointer. (Coverity) Solution: Use the original function name. --- src/evalfunc.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/evalfunc.c b/src/evalfunc.c index b374d55d4..6a9f9d637 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -2536,7 +2536,7 @@ common_function(typval_T *argvars, typval_T *rettv, int is_funcref) arg_idx = 0; else if (list->lv_len > MAX_FUNC_ARGS) { - emsg_funcname((char *)e_toomanyarg, name); + emsg_funcname((char *)e_toomanyarg, s); vim_free(name); goto theend; } diff --git a/src/version.c b/src/version.c index c327f98b4..06edccdae 100644 --- a/src/version.c +++ b/src/version.c @@ -737,6 +737,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2335, /**/ 2334, /**/ -- 2.50.1