Patch 7.3.398
Problem: When creating more than 10 location lists and adding items one by
one a previous location may be used. (Audrius Kažukauskas)
Solution: Clear the location list completely when adding the tenth one.
Files: src/quickfix.c
*** ../vim-7.3.397/src/quickfix.c 2012-01-10 16:28:41.000000000 +0100
--- src/quickfix.c 2012-01-10 16:58:52.000000000 +0100
***************
*** 899,906 ****
}
else
qi->qf_curlist = qi->qf_listcount++;
! qi->qf_lists[qi->qf_curlist].qf_index = 0;
! qi->qf_lists[qi->qf_curlist].qf_count = 0;
if (qf_title != NULL)
{
char_u *p = alloc((int)STRLEN(qf_title) + 2);
--- 899,905 ----
}
else
qi->qf_curlist = qi->qf_listcount++;
! vim_memset(&qi->qf_lists[qi->qf_curlist], 0, (size_t)(sizeof(qf_list_T)));
if (qf_title != NULL)
{
char_u *p = alloc((int)STRLEN(qf_title) + 2);
***************
*** 909,916 ****
if (p != NULL)
sprintf((char *)p, ":%s", (char *)qf_title);
}
- else
- qi->qf_lists[qi->qf_curlist].qf_title = NULL;
}
/*
--- 908,913 ----
*** ../vim-7.3.397/src/version.c 2012-01-10 16:28:41.000000000 +0100
--- src/version.c 2012-01-10 17:13:09.000000000 +0100
***************
*** 716,717 ****
--- 716,719 ----
{ /* Add new patch number below this line */
+ /**/
+ 398,
/**/
--
Why don't cannibals eat clowns?
Because they taste funny.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php