summaryrefslogtreecommitdiff
path: root/src/ex_eval.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-10 20:31:37 +0200
committerBram Moolenaar <Bram@vim.org>2020-10-10 20:31:37 +0200
commitd747548c664815bb6e8520afa90b6108e1997591 (patch)
treed52280f328ea909e0747398f408123ea66516955 /src/ex_eval.c
parentfcdc5d83fbfd7ddce634769ea902e58c87f27f20 (diff)
downloadvim-git-d747548c664815bb6e8520afa90b6108e1997591.tar.gz
patch 8.2.1825: Vim9: accessing freed memoryv8.2.1825
Problem: Vim9: accessing freed memory. Solution: Clear sv_name when the variable is deleted.
Diffstat (limited to 'src/ex_eval.c')
-rw-r--r--src/ex_eval.c32
1 files changed, 19 insertions, 13 deletions
diff --git a/src/ex_eval.c b/src/ex_eval.c
index 6a7087b68..d205cafc4 100644
--- a/src/ex_eval.c
+++ b/src/ex_eval.c
@@ -925,22 +925,28 @@ leave_block(cstack_T *cstack)
if (in_vim9script())
{
- scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid);
+ scriptitem_T *si = SCRIPT_ITEM(current_sctx.sc_sid);
+ hashtab_T *ht = get_script_local_ht();
- for (i = cstack->cs_script_var_len[cstack->cs_idx];
- i < si->sn_var_vals.ga_len; ++i)
+ if (ht != NULL)
{
- svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data) + i;
- hashtab_T *ht = get_script_local_ht();
- hashitem_T *hi;
-
- if (ht != NULL)
+ for (i = cstack->cs_script_var_len[cstack->cs_idx];
+ i < si->sn_var_vals.ga_len; ++i)
{
- // Remove a variable declared inside the block, if it still
- // exists.
- hi = hash_find(ht, sv->sv_name);
- if (!HASHITEM_EMPTY(hi))
- delete_var(ht, hi);
+ svar_T *sv = ((svar_T *)si->sn_var_vals.ga_data) + i;
+ hashitem_T *hi;
+
+ if (sv->sv_name != NULL)
+ {
+ // Remove a variable declared inside the block, if it still
+ // exists.
+ hi = hash_find(ht, sv->sv_name);
+ if (!HASHITEM_EMPTY(hi))
+ {
+ delete_var(ht, hi);
+ sv->sv_name = NULL;
+ }
+ }
}
}
}