summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-05-24 10:51:30 +0200
committerBram Moolenaar <Bram@vim.org>2016-05-24 10:51:30 +0200
commit908be438794619f10ef7fa25e24e5893b2ae0189 (patch)
tree24528529e9fe0191ffc5d9988ae32ab9b610f456 /src/screen.c
parent2ff8b64679242e73248774a388d54931c9ce49bd (diff)
downloadvim-git-908be438794619f10ef7fa25e24e5893b2ae0189.tar.gz
patch 7.4.1834v7.4.1834
Problem: Possible crash when conceal is active. Solution: Check for the screen to be valid when redrawing a line.
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/screen.c b/src/screen.c
index a72bffa53..2e425cba4 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -801,6 +801,10 @@ update_single_line(win_T *wp, linenr_T lnum)
int row;
int j;
+ /* Don't do anything if the screen structures are (not yet) valid. */
+ if (!screen_valid(TRUE))
+ return;
+
if (lnum >= wp->w_topline && lnum < wp->w_botline
&& foldedCount(wp, lnum, &win_foldinfo) == 0)
{