]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.398 v7.3.398
authorBram Moolenaar <Bram@vim.org>
Tue, 10 Jan 2012 16:13:52 +0000 (17:13 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 10 Jan 2012 16:13:52 +0000 (17:13 +0100)
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.

src/quickfix.c
src/version.c

index 794c49380d79c521e64645b3fd516e464ee974da..26eac7be59143640a825d5a12aded0a6f5207fbf 100644 (file)
@@ -899,8 +899,7 @@ qf_new_list(qi, qf_title)
     }
     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;
+    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,8 +908,6 @@ qf_new_list(qi, qf_title)
        if (p != NULL)
            sprintf((char *)p, ":%s", (char *)qf_title);
     }
-    else
-       qi->qf_lists[qi->qf_curlist].qf_title = NULL;
 }
 
 /*
index 777c15ec6cd17baff013ae487254bf092a53d31d..e3a79e294ac4f9722b0a25c966f329784d0904a4 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    398,
 /**/
     397,
 /**/