# HG changeset patch # User vimboss # Date 1164139050 0 # Node ID 932fe018ad166a9f8e4b6b0ae91d562cab7c37db # Parent c3bd0a84e11ad1caf53402dbebc39ea8b01fc832 updated for version 7.0-168 diff --git a/src/memline.c b/src/memline.c --- 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 --- 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 --- 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;