Module Name: src
Committed By: jakllsch
Date: Sun Dec 27 16:03:49 UTC 2009
Modified Files:
src/sys/dev/microcode/aic7xxx: aicasm.c
Log Message:
Free memory when done with it.
>From Henning Petersen in PR/42522.
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/microcode/aic7xxx/aicasm.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/microcode/aic7xxx/aicasm.c
diff -u src/sys/dev/microcode/aic7xxx/aicasm.c:1.7 src/sys/dev/microcode/aic7xxx/aicasm.c:1.8
--- src/sys/dev/microcode/aic7xxx/aicasm.c:1.7 Wed Mar 18 10:22:40 2009
+++ src/sys/dev/microcode/aic7xxx/aicasm.c Sun Dec 27 16:03:49 2009
@@ -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 <sys/cdefs.h>
-__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 <sys/types.h>
#include <sys/mman.h>
@@ -594,6 +594,7 @@
if (isatty(fileno(stdin)) == 0)
putchar(input);
}
+ free(func_values);
fprintf(stdout, "\nThanks!\n");
}