summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2006-11-21 19:57:30 +0000
committervimboss <devnull@localhost>2006-11-21 19:57:30 +0000
commit21af1c29308c82aad313e8977d512abec6f11eb4 (patch)
tree1e47e1269fa3d7fcc4f53c36e3bad97ebe717d7a
parent3fa060cec2a32d6e5fe5aa30a4ca487721dce634 (diff)
downloadvim-21af1c29308c82aad313e8977d512abec6f11eb4.tar.gz
updated for version 7.0-168v7.0.168v7-0-168
-rw-r--r--src/memline.c1
-rw-r--r--src/version.c2
-rw-r--r--src/window.c2
3 files changed, 4 insertions, 1 deletions
diff --git a/src/memline.c b/src/memline.c
index 80a870a0..ddaf6de5 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -1329,6 +1329,7 @@ theend:
mf_put(mfp, hp, FALSE, FALSE);
mf_close(mfp, FALSE); /* will also vim_free(mfp->mf_fname) */
}
+ vim_free(buf->b_ml.ml_stack);
vim_free(buf);
if (serious_error && called_from_main)
ml_close(curbuf, TRUE);
diff --git a/src/version.c b/src/version.c
index 550137eb..f1095b69 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 168,
+/**/
167,
/**/
166,
diff --git a/src/window.c b/src/window.c
index 5f5bb2a0..ee9ef9c0 100644
--- a/src/window.c
+++ b/src/window.c
@@ -4273,7 +4273,7 @@ win_alloc_lines(wp)
win_T *wp;
{
wp->w_lines_valid = 0;
- wp->w_lines = (wline_T *)alloc((unsigned)(Rows * sizeof(wline_T)));
+ wp->w_lines = (wline_T *)alloc_clear((unsigned)(Rows * sizeof(wline_T)));
if (wp->w_lines == NULL)
return FAIL;
return OK;