mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.0.0344: unlet command leaks memory
Problem: Unlet command leaks memory. (Nikolai Pavlov) Solution: Free the memory on error. (closes #1497)
This commit is contained in:
@@ -2079,7 +2079,10 @@ get_lval(
|
||||
}
|
||||
/* existing variable, need to check if it can be changed */
|
||||
else if (var_check_ro(lp->ll_di->di_flags, name, FALSE))
|
||||
{
|
||||
clear_tv(&var1);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (len == -1)
|
||||
clear_tv(&var1);
|
||||
|
Reference in New Issue
Block a user