0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

updated for version 7.4.541

Problem:    Crash when doing a range assign.
Solution:   Check for NULL poiter. (Yukihiro Nakadaira)
This commit is contained in:
Bram Moolenaar
2014-12-07 00:18:33 +01:00
parent ed32d9424d
commit b2a851fee4
4 changed files with 9 additions and 1 deletions

View File

@@ -2951,7 +2951,7 @@ set_var_lval(lp, endp, rettv, copy, op)
/*
* Check whether any of the list items is locked
*/
for (ri = rettv->vval.v_list->lv_first; ri != NULL; )
for (ri = rettv->vval.v_list->lv_first; ri != NULL && ll_li != NULL; )
{
if (tv_check_lock(ll_li->li_tv.v_lock, lp->ll_name))
return;