From: Bram Moolenaar Date: Tue, 21 Nov 2006 19:57:30 +0000 (+0000) Subject: updated for version 7.0-168 X-Git-Tag: v7.0.168 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9334c3447a7034f749f1c1da132d4bf860471c28;p=vim updated for version 7.0-168 --- diff --git a/src/memline.c b/src/memline.c index 80a870a0e..ddaf6de58 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 550137eb0..f1095b691 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 168, /**/ 167, /**/ diff --git a/src/window.c b/src/window.c index 5f5bb2a09..ee9ef9c0c 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;