Plugging two tiny memory leaks. Patch essentially by Mark Majeres.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4819 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
618051cac7
commit
20011f4d41
|
@ -1,3 +1,6 @@
|
||||||
|
2014-04-27 Mark Majeres <mark@engine12.com>
|
||||||
|
* src/rcfile.c (parse_include): Plug two tiny memory leaks.
|
||||||
|
|
||||||
2014-04-26 Benno Schulenberg <bensberg@justemail.net>
|
2014-04-26 Benno Schulenberg <bensberg@justemail.net>
|
||||||
* src/global.c (add_to_funcs): Add a pointer to the tail of the
|
* src/global.c (add_to_funcs): Add a pointer to the tail of the
|
||||||
functions list, to simplify and speed up adding new items. And
|
functions list, to simplify and speed up adding new items. And
|
||||||
|
|
|
@ -649,6 +649,9 @@ void parse_include(char *ptr)
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
globfree(&files);
|
||||||
|
free(expanded);
|
||||||
|
|
||||||
/* We're done with the new syntax file. Restore the original
|
/* We're done with the new syntax file. Restore the original
|
||||||
* filename and line number position. */
|
* filename and line number position. */
|
||||||
nanorc = nanorc_save;
|
nanorc = nanorc_save;
|
||||||
|
|
Loading…
Reference in New Issue