changeset 18687:81d34044450f v8.1.2335

patch 8.1.2335: error message for function arguments may use NULL pointer Commit: https://github.com/vim/vim/commit/2118a302957dea352174722bf355376901f49b9b Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 22 19:29:45 2019 +0100 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.
author Bram Moolenaar <Bram@vim.org>
date Fri, 22 Nov 2019 19:30:05 +0100
parents 1a24a050315a
children b291f5642a2c
files src/evalfunc.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -2536,7 +2536,7 @@ common_function(typval_T *argvars, typva
 		    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;
 		}
--- a/src/version.c
+++ b/src/version.c
@@ -738,6 +738,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2335,
+/**/
     2334,
 /**/
     2333,