From 09b3cf740d3d4de9f0fca7ff98373f6445978952 Mon Sep 17 00:00:00 2001 From: jakllsch Date: Sun, 27 Dec 2009 16:03:49 +0000 Subject: Free memory when done with it. From Henning Petersen in PR/42522. --- sys/dev/microcode/aic7xxx/aicasm.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/dev/microcode') diff --git a/sys/dev/microcode/aic7xxx/aicasm.c b/sys/dev/microcode/aic7xxx/aicasm.c index ed8069dd206..65b1bbb1fed 100644 --- a/sys/dev/microcode/aic7xxx/aicasm.c +++ b/sys/dev/microcode/aic7xxx/aicasm.c @@ -1,4 +1,4 @@ -/* $NetBSD: aicasm.c,v 1.7 2009/03/18 10:22:40 cegger Exp $ */ +/* $NetBSD: aicasm.c,v 1.8 2009/12/27 16:03:49 jakllsch Exp $ */ /* * Aic7xxx SCSI host adapter firmware asssembler @@ -43,7 +43,7 @@ */ #include -__RCSID("$NetBSD: aicasm.c,v 1.7 2009/03/18 10:22:40 cegger Exp $"); +__RCSID("$NetBSD: aicasm.c,v 1.8 2009/12/27 16:03:49 jakllsch Exp $"); #include #include @@ -594,6 +594,7 @@ output_listing(char *ifilename) if (isatty(fileno(stdin)) == 0) putchar(input); } + free(func_values); fprintf(stdout, "\nThanks!\n"); } -- cgit