summaryrefslogtreecommitdiffstats
path: root/source/ap/vim/patches/7.3.388
blob: 7a6df8952c1fb376e77f735dcadbc4c3c20e9983 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
To: vim_dev@googlegroups.com
Subject: Patch 7.3.388
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------

Patch 7.3.388
Problem:    Crash on exit when EXITFREE is defined and using tiny features.
Solution:   Check for NULL window pointer. (Dominique Pelle)
Files:	    src/buffer.c


*** ../vim-7.3.387/src/buffer.c	2011-11-30 15:40:51.000000000 +0100
--- src/buffer.c	2011-12-30 13:35:26.000000000 +0100
***************
*** 419,424 ****
--- 419,426 ----
      if (
  #ifdef FEAT_WINDOWS
  	win_valid(win) &&
+ #else
+ 	win != NULL &&
  #endif
  			  win->w_buffer == buf)
  	win->w_buffer = NULL;  /* make sure we don't use the buffer now */
*** ../vim-7.3.387/src/version.c	2011-12-30 13:09:15.000000000 +0100
--- src/version.c	2011-12-30 13:37:23.000000000 +0100
***************
*** 716,717 ****
--- 716,719 ----
  {   /* Add new patch number below this line */
+ /**/
+     388,
  /**/

-- 
Be nice to your kids...  they'll be the ones choosing your nursing home.

 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///