]> git.eshelyaron.com Git - emacs.git/commitdiff
(sort_args): Free the malloc'd memory.
authorRichard M. Stallman <rms@gnu.org>
Fri, 25 Apr 1997 19:42:38 +0000 (19:42 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 25 Apr 1997 19:42:38 +0000 (19:42 +0000)
src/emacs.c

index a8bd976e7349ee4f571d3578c726da51ae2218df..ed5f89160c3064884de9e08155d2832c3ed10bbf 100644 (file)
@@ -1319,6 +1319,10 @@ sort_args (argc, argv)
     }
 
   bcopy (new, argv, sizeof (char *) * argc);
+
+  free (options);
+  free (new);
+  free (priority);
 }
 \f
 DEFUN ("kill-emacs", Fkill_emacs, Skill_emacs, 0, 1, "P",