1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-02-14 19:32:10 +02:00

mktemp: plug an inconsequential leak

* src/mktemp.c (main) [lint]: Free template.
This commit is contained in:
Jim Meyering
2008-09-27 12:05:48 +02:00
parent b616886492
commit 0643c51cab

View File

@@ -14,7 +14,7 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* Jim Meyering */
/* Written by Jim Meyering. */
#include <config.h>
#include <stdio.h>
@@ -279,6 +279,7 @@ main (int argc, char **argv)
#ifdef lint
free (dest_name);
free (template);
#endif
exit (status);