summaryrefslogtreecommitdiff
path: root/src/misc1.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-09-10 15:52:55 +0200
committerBram Moolenaar <Bram@vim.org>2016-09-10 15:52:55 +0200
commit80c3fd7c559c7d329d57afe10db9bfb0adf10e46 (patch)
tree2633e7ae277f9e18dab2512086b603a555773f50 /src/misc1.c
parent26fe0d56912e42c2b16a61b2480e19ba569aee98 (diff)
downloadvim-git-80c3fd7c559c7d329d57afe10db9bfb0adf10e46.tar.gz
patch 7.4.2360v7.4.2360
Problem: Invalid memory access when formatting. (Dominique Pelle) Solution: Make sure cursor line and column are associated.
Diffstat (limited to 'src/misc1.c')
-rw-r--r--src/misc1.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/misc1.c b/src/misc1.c
index 99f963ce0..79014cf29 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -6097,7 +6097,7 @@ cin_isterminated(
* When a line ends in a comma we continue looking in the next line.
* "sp" points to a string with the line. When looking at other lines it must
* be restored to the line. When it's NULL fetch lines here.
- * "lnum" is where we start looking.
+ * "first_lnum" is where we start looking.
* "min_lnum" is the line before which we will not be looking.
*/
static int
@@ -6108,6 +6108,7 @@ cin_isfuncdecl(
{
char_u *s;
linenr_T lnum = first_lnum;
+ linenr_T save_lnum = curwin->w_cursor.lnum;
int retval = FALSE;
pos_T *trypos;
int just_started = TRUE;
@@ -6117,15 +6118,20 @@ cin_isfuncdecl(
else
s = *sp;
+ curwin->w_cursor.lnum = lnum;
if (find_last_paren(s, '(', ')')
&& (trypos = find_match_paren(curbuf->b_ind_maxparen)) != NULL)
{
lnum = trypos->lnum;
if (lnum < min_lnum)
+ {
+ curwin->w_cursor.lnum = save_lnum;
return FALSE;
+ }
s = ml_get(lnum);
}
+ curwin->w_cursor.lnum = save_lnum;
/* Ignore line starting with #. */
if (cin_ispreproc(s))
@@ -6681,7 +6687,7 @@ find_start_brace(void) /* XXX */
static pos_T *
find_match_paren(int ind_maxparen) /* XXX */
{
- return find_match_char('(', ind_maxparen);
+ return find_match_char('(', ind_maxparen);
}
static pos_T *