mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 9.0.1189: invalid memory access with folding and using "L"
Problem: Invalid memory access with folding and using "L". Solution: Prevent the cursor from moving to line zero.
This commit is contained in:
@@ -3729,7 +3729,8 @@ nv_scroll(cmdarg_T *cap)
|
||||
{
|
||||
(void)hasFolding(curwin->w_cursor.lnum,
|
||||
&curwin->w_cursor.lnum, NULL);
|
||||
--curwin->w_cursor.lnum;
|
||||
if (curwin->w_cursor.lnum > curwin->w_topline)
|
||||
--curwin->w_cursor.lnum;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user