[vim] - patchlevel 388

Karsten Hopp karsten at fedoraproject.org
Thu Jan 5 11:42:06 UTC 2012


commit a14d21f58a9498f202aba6f405f874da6bb4e00a
Author: Karsten Hopp <karsten at redhat.com>
Date:   Thu Jan 5 12:44:55 2012 +0100

    - patchlevel 388

 7.3.388 |   45 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)
---
diff --git a/7.3.388 b/7.3.388
new file mode 100644
index 0000000..7a6df89
--- /dev/null
+++ b/7.3.388
@@ -0,0 +1,45 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.388
+Fcc: outbox
+From: Bram Moolenaar <Bram at 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 at 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    ///


More information about the scm-commits mailing list