summaryrefslogtreecommitdiffstats
path: root/src/map.c
diff options
context:
space:
mode:
authorChristian Brabandt <cb@256bit.org>2024-04-16 22:44:31 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-16 22:44:31 +0200
commit29269a71b5ac8a87c6c4beca35c173a19a2c9398 (patch)
tree64da5504c5544f9d9e0ead921246bc0ad7caef0c /src/map.c
parentf7d31adcc22eae852d6e7a5b59e9755ba7b51d35 (diff)
patch 9.1.0341: Problem: a few memory leaks are foundv9.1.0341
Problem: a few memory leaks are found (LuMingYinDetect ) Solution: properly free the memory Fixes the following problems: - Memory leak in f_maplist() fixes: #14486 - Memory leak in option.c fixes: #14485 - Memory leak in f_resolve() fixes: #14484 - Memory leak in f_autocmd_get() related: #14474 - Memory leak in dict_extend_func() fixes: #14477 fixes: #14238 closes: #14517 Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/map.c')
-rw-r--r--src/map.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map.c b/src/map.c
index b7bb46c047..c416c0a327 100644
--- a/src/map.c
+++ b/src/map.c
@@ -2574,7 +2574,10 @@ f_maplist(typval_T *argvars UNUSED, typval_T *rettv)
if ((d = dict_alloc()) == NULL)
return;
if (list_append_dict(rettv->vval.v_list, d) == FAIL)
+ {
+ dict_unref(d);
return;
+ }
keys_buf = NULL;
did_simplify = FALSE;