]> git.pld-linux.org Git - packages/vim.git/blob - 7.2.116
- new
[packages/vim.git] / 7.2.116
1 To: vim-dev@vim.org
2 Subject: Patch 7.2.116
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.2.116 
11 Problem:    Not all memory is freed when EXITFREE is defined. 
12 Solution:   Free allocated memory on exit. (Dominique Pelle) 
13 Files:      src/ex_docmd.c, src/gui_gtk_x11.c, src/misc2.c, src/search.c, 
14             src/tag.c 
15     
16
17 *** ../vim-7.2.115/src/tag.c    Tue Jan 13 17:27:18 2009
18 --- src/tag.c   Tue Feb 17 03:43:32 2009
19 ***************
20 *** 2542,2547 ****
21 --- 2542,2556 ----
22   {
23       ga_clear_strings(&tag_fnames);
24       do_tag(NULL, DT_FREE, 0, 0, 0);
25 +     tag_freematch();
26
27 + # if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
28 +     if (ptag_entry.tagname)
29 +     {
30 +         vim_free(ptag_entry.tagname);
31 +         ptag_entry.tagname = NULL;
32 +     }
33 + # endif
34   }
35   #endif
36   
37 *** ../vim-7.2.115/src/version.c        Sat Feb 21 22:29:12 2009
38 --- src/version.c       Sat Feb 21 22:56:14 2009
39 ***************
40 *** 678,679 ****
41 --- 678,681 ----
42   {   /* Add new patch number below this line */
43 + /**/
44 +     116,
45   /**/
46
47 -- 
48 hundred-and-one symptoms of being an internet addict:
49 106. When told to "go to your room" you inform your parents that you
50      can't...because you were kicked out and banned.
51
52  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
53 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
54 \\\        download, build and distribute -- http://www.A-A-P.org        ///
55  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.046737 seconds and 3 git commands to generate.