# HG changeset patch # User Richard M. Stallman # Date 861997358 0 # Node ID b696f990c544eb447facc2939294b8b5087cb631 # Parent 512c5e112d10ad5bf0a52dae1e85fc8781d57ca0 (sort_args): Free the malloc'd memory. diff -r 512c5e112d10 -r b696f990c544 src/emacs.c --- a/src/emacs.c Fri Apr 25 18:14:10 1997 +0000 +++ b/src/emacs.c Fri Apr 25 19:42:38 1997 +0000 @@ -1319,6 +1319,10 @@ } bcopy (new, argv, sizeof (char *) * argc); + + free (options); + free (new); + free (priority); } DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",