diff options
author | brueffer <brueffer@FreeBSD.org> | 2009-10-21 14:09:06 +0000 |
---|---|---|
committer | brueffer <brueffer@FreeBSD.org> | 2009-10-21 14:09:06 +0000 |
commit | a99fcc8f77b5bda1efb091154f812e01628beeae (patch) | |
tree | 2f2d355484ecc0203e9d0187e28f1b7d8a3e52f6 /sys/dev/aic7xxx/aicasm/aicasm.c | |
parent | bd4f73fc0abdb59490f3f82c92ba4ff5399aa64a (diff) | |
download | FreeBSD-src-a99fcc8f77b5bda1efb091154f812e01628beeae.zip FreeBSD-src-a99fcc8f77b5bda1efb091154f812e01628beeae.tar.gz |
Add a missing free() call.
PR: 138379
Submitted by: Patroklos Argyroudis <argp@census-labs.com>
Reviewed by: gibbs
MFC after: 1 week
Diffstat (limited to 'sys/dev/aic7xxx/aicasm/aicasm.c')
-rw-r--r-- | sys/dev/aic7xxx/aicasm/aicasm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/aic7xxx/aicasm/aicasm.c b/sys/dev/aic7xxx/aicasm/aicasm.c index 6ba57bc..3c9109c 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); |