From fa6785d5af87f3d5ebcf9a27c0338aedb66ecb53 Mon Sep 17 00:00:00 2001 From: brueffer Date: Sat, 31 Oct 2009 10:59:53 +0000 Subject: [PATCH] MFC: r198327 Add a missing free() call. git-svn-id: svn://svn.freebsd.org/base/stable/8@198710 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- sys/dev/aic7xxx/aicasm/aicasm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/dev/aic7xxx/aicasm/aicasm.c b/sys/dev/aic7xxx/aicasm/aicasm.c index 6ba57bcc2..3c9109ce3 100644 --- a/sys/dev/aic7xxx/aicasm/aicasm.c +++ b/sys/dev/aic7xxx/aicasm/aicasm.c @@ -639,6 +639,8 @@ output_listing(char *ifilename) } instrptr++; } + free(func_values); + /* Dump the remainder of the file */ while(fgets(buf, sizeof(buf), ifile) != NULL) fprintf(listfile, " %s", buf); -- 2.45.0