From b7ca478e10a468952f237b853443b117400651eb Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 6 Jul 2019 12:22:20 +0200 Subject: [PATCH] func_clear_items: use XFREE_CLEAR #10436 Follow-up to https://github.com/neovim/neovim/pull/10428#discussion_r300813498 --- src/nvim/eval.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 1935478f15..fb8ec5457b 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -22213,12 +22213,9 @@ static void func_clear_items(ufunc_T *fp) ga_clear_strings(&(fp->uf_args)); ga_clear_strings(&(fp->uf_lines)); - xfree(fp->uf_tml_count); - fp->uf_tml_count = NULL; - xfree(fp->uf_tml_total); - fp->uf_tml_total = NULL; - xfree(fp->uf_tml_self); - fp->uf_tml_self = NULL; + XFREE_CLEAR(fp->uf_tml_count); + XFREE_CLEAR(fp->uf_tml_total); + XFREE_CLEAR(fp->uf_tml_self); } /// Free all things that a function contains. Does not free the function