]> git.ipfire.org Git - ipfire-3.x.git/blob - vim/patches/vim-7.3.388.patch0
Merge remote-tracking branch 'stevee/dracut'
[ipfire-3.x.git] / vim / patches / vim-7.3.388.patch0
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.388
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.388
11 Problem: Crash on exit when EXITFREE is defined and using tiny features.
12 Solution: Check for NULL window pointer. (Dominique Pelle)
13 Files: 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 --
40 Be 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 ///