]> git.pld-linux.org Git - packages/vim.git/blame - 7.2.116
- new
[packages/vim.git] / 7.2.116
CommitLineData
9512a71a
AG
1To: vim-dev@vim.org
2Subject: Patch 7.2.116
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.2.116
11Problem: Not all memory is freed when EXITFREE is defined.
12Solution: Free allocated memory on exit. (Dominique Pelle)
13Files: 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--
48hundred-and-one symptoms of being an internet addict:
49106. 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.027336 seconds and 4 git commands to generate.