summaryrefslogtreecommitdiffstats
path: root/src/drawline.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/drawline.c')
-rw-r--r--src/drawline.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/drawline.c b/src/drawline.c
index 2f865127f7..03a229eaec 100644
--- a/src/drawline.c
+++ b/src/drawline.c
@@ -1031,12 +1031,11 @@ win_line(
// Draw the 'foldcolumn'. Allocate a buffer, "extra" may
// already be in use.
vim_free(p_extra_free);
- p_extra_free = alloc(12 + 1);
-
+ p_extra_free = alloc(MAX_MCO * fdc + 1);
if (p_extra_free != NULL)
{
- fill_foldcolumn(p_extra_free, wp, FALSE, lnum);
- n_extra = fdc;
+ n_extra = fill_foldcolumn(p_extra_free, wp,
+ FALSE, lnum);
p_extra_free[n_extra] = NUL;
p_extra = p_extra_free;
c_extra = NUL;