summaryrefslogtreecommitdiffstats
path: root/src/debugger.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2023-03-07 17:45:11 +0000
committerBram Moolenaar <Bram@vim.org>2023-03-07 17:45:11 +0000
commit960dcbd098c761dd623bec9492d5391ff6e8dceb (patch)
treedf2abb6d73be0c31de679fa00251e133a0e99ab6 /src/debugger.c
parent14113fdf9cb3d588c0d1c3a210246b981cf5aad3 (diff)
patch 9.0.1391: "clear" macros are not always usedv9.0.1391
Problem: "clear" macros are not always used. Solution: Use ALLOC_ONE, VIM_CLEAR, CLEAR_POINTER and CLEAR_FIELD in more places. (Yegappan Lakshmanan, closes #12104)
Diffstat (limited to 'src/debugger.c')
-rw-r--r--src/debugger.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/debugger.c b/src/debugger.c
index b158ecdd70..a04a078361 100644
--- a/src/debugger.c
+++ b/src/debugger.c
@@ -97,14 +97,12 @@ do_debug(char_u *cmd)
if (debug_oldval != NULL)
{
smsg(_("Oldval = \"%s\""), debug_oldval);
- vim_free(debug_oldval);
- debug_oldval = NULL;
+ VIM_CLEAR(debug_oldval);
}
if (debug_newval != NULL)
{
smsg(_("Newval = \"%s\""), debug_newval);
- vim_free(debug_newval);
- debug_newval = NULL;
+ VIM_CLEAR(debug_newval);
}
sname = estack_sfile(ESTACK_NONE);
if (sname != NULL)