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

updated for version 7.3.533

Problem:    Memory leak when writing undo file.
Solution:   Free the ACL. (Dominique Pelle)
parent 112f3185
No related merge requests found
......@@ -1535,6 +1535,7 @@ write_error:
/* For systems that support ACL: get the ACL from the original file. */
acl = mch_get_acl(buf->b_ffname);
mch_set_acl(file_name, acl);
mch_free_acl(acl);
}
#endif
......
......@@ -714,6 +714,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
533,
/**/
532,
/**/
......
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