]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.316 v7.3.316
authorBram Moolenaar <Bram@vim.org>
Wed, 21 Sep 2011 11:40:17 +0000 (13:40 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 21 Sep 2011 11:40:17 +0000 (13:40 +0200)
Problem:    Crash when 'colorcolumn' is set and closing buffer.
Solution:   Check for w_buffer to be NULL. (Yasuhiro Matsumoto)

src/option.c
src/version.c

index 4db302714abc3a952db7298aed322012cbe0a277..977d83802be4499b2fadc4def988e21016adf601 100644 (file)
@@ -7036,6 +7036,9 @@ check_colorcolumn(wp)
     int                i;
     int                j = 0;
 
+    if (wp->w_buffer == NULL)
+       return NULL;  /* buffer was closed */
+
     for (s = wp->w_p_cc; *s != NUL && count < 255;)
     {
        if (*s == '-' || *s == '+')
index d0e649c33c5e38076d911dd9aa5057270c10759d..d67e8d845fc741d88db8200ecee40cc27ac62001 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    316,
 /**/
     315,
 /**/