mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.0.0374: invalid memory access when using :sc in Ex mode
Problem: Invalid memory access when using :sc in Ex mode. (Dominique Pelle) Solution: Avoid the column being negative. Also fix a hang in Ex mode.
This commit is contained in:
@@ -5288,6 +5288,8 @@ do_sub(exarg_T *eap)
|
||||
|
||||
getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
|
||||
curwin->w_cursor.col = regmatch.endpos[0].col - 1;
|
||||
if (curwin->w_cursor.col < 0)
|
||||
curwin->w_cursor.col = 0;
|
||||
getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
|
||||
if (subflags.do_number || curwin->w_p_nu)
|
||||
{
|
||||
|
Reference in New Issue
Block a user