]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.388
- new
[packages/vim.git] / 7.3.388
CommitLineData
d034a75d
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.388
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.388
11Problem: Crash on exit when EXITFREE is defined and using tiny features.
12Solution: Check for NULL window pointer. (Dominique Pelle)
13Files: src/buffer.c
14
15
16*** ../vim-7.3.387/src/buffer.c 2011-11-30 15:40:51.000000000 +0100
17--- src/buffer.c 2011-12-30 13:35:26.000000000 +0100
18***************
19*** 419,424 ****
20--- 419,426 ----
21 if (
22 #ifdef FEAT_WINDOWS
23 win_valid(win) &&
24+ #else
25+ win != NULL &&
26 #endif
27 win->w_buffer == buf)
28 win->w_buffer = NULL; /* make sure we don't use the buffer now */
29*** ../vim-7.3.387/src/version.c 2011-12-30 13:09:15.000000000 +0100
30--- src/version.c 2011-12-30 13:37:23.000000000 +0100
31***************
32*** 716,717 ****
33--- 716,719 ----
34 { /* Add new patch number below this line */
35+ /**/
36+ 388,
37 /**/
38
39--
40Be nice to your kids... they'll be the ones choosing your nursing home.
41
42 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
43/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
44\\\ an exciting new programming language -- http://www.Zimbu.org ///
45 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.057374 seconds and 4 git commands to generate.