Skip to content
Snippets Groups Projects
Commit df88dda9 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.0-179

parent 201863f7
No related merge requests found
......@@ -1329,8 +1329,11 @@ 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 (buf != NULL)
{
vim_free(buf->b_ml.ml_stack);
vim_free(buf);
}
if (serious_error && called_from_main)
ml_close(curbuf, TRUE);
#ifdef FEAT_AUTOCMD
......
......@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
179,
/**/
178,
/**/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment