summaryrefslogtreecommitdiff
path: root/src/userfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-25 23:29:28 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-25 23:29:28 +0200
commita14e6975478adeddcc2161edc1ec611016aa89f3 (patch)
tree91d67e43f4bc17c7787d26b18e0f3b835a6cd703 /src/userfunc.c
parent1919371b2b9ddb1a645f40b59adbd89317530882 (diff)
downloadvim-git-a14e6975478adeddcc2161edc1ec611016aa89f3.tar.gz
patch 8.2.0825: def_function() may return pointer that was freedv8.2.0825
Problem: def_function() may return pointer that was freed. Solution: Set "fp" to NULL after freeing it.
Diffstat (limited to 'src/userfunc.c')
-rw-r--r--src/userfunc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/userfunc.c b/src/userfunc.c
index 87e06c61d..c50a871c2 100644
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -3140,12 +3140,14 @@ def_function(exarg_T *eap, char_u *name_arg)
if (fudi.fd_di == NULL)
{
vim_free(fp);
+ fp = NULL;
goto erret;
}
if (dict_add(fudi.fd_dict, fudi.fd_di) == FAIL)
{
vim_free(fudi.fd_di);
vim_free(fp);
+ fp = NULL;
goto erret;
}
}
@@ -3169,6 +3171,7 @@ def_function(exarg_T *eap, char_u *name_arg)
else if (hash_add(&func_hashtab, UF2HIKEY(fp)) == FAIL)
{
vim_free(fp);
+ fp = NULL;
goto erret;
}
fp->uf_refcount = 1;