]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.562 v7.4.562
authorBram Moolenaar <Bram@vim.org>
Wed, 7 Jan 2015 12:31:52 +0000 (13:31 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 7 Jan 2015 12:31:52 +0000 (13:31 +0100)
Problem:    Segfault with wide screen and error in 'rulerformat'. (Ingo Karkat)
Solution:   Check there is enough space. (Christian Brabandt)

src/buffer.c
src/screen.c
src/version.c

index 37182e146c0a7c00d44de8d08735ea2d16bc083d..0d14706063d72b8826f1fe3e79dcdb7a092cc23a 100644 (file)
@@ -4409,6 +4409,8 @@ get_rel_pos(wp, buf, buflen)
     long       above; /* number of lines above window */
     long       below; /* number of lines below window */
 
+    if (buflen < 3) /* need at least 3 chars for writing */
+       return;
     above = wp->w_topline - 1;
 #ifdef FEAT_DIFF
     above += diff_check_fill(wp, wp->w_topline) - wp->w_topfill;
index e7b8e78d78006ae4ffedfa068b9281ec15f31cbb..290dd1bd3d16aebd6eac88ad84694188330efdb2 100644 (file)
@@ -10588,7 +10588,8 @@ win_redr_ruler(wp, always)
            this_ru_col = (WITH_WIDTH(width) + 1) / 2;
        if (this_ru_col + o < WITH_WIDTH(width))
        {
-           while (this_ru_col + o < WITH_WIDTH(width))
+           /* need at least 3 chars left for get_rel_pos() + NUL */
+           while (this_ru_col + o < WITH_WIDTH(width) && RULER_BUF_LEN > i + 4)
            {
 #ifdef FEAT_MBYTE
                if (has_mbyte)
index 9d06ab33f497570ecb1ea94706af863a74cd539f..5c7dbd91ff194d96ea336943ef471d8658ee2a69 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    562,
 /**/
     561,
 /**/