svn commit: r198712 - in stable/7/sys: . contrib/pf
dev/aic7xxx/aicasm
Christian Brueffer
brueffer at FreeBSD.org
Sat Oct 31 11:21:46 UTC 2009
Author: brueffer
Date: Sat Oct 31 11:21:45 2009
New Revision: 198712
URL: http://svn.freebsd.org/changeset/base/198712
Log:
MFC: r198327
Add a missing free() call.
Modified:
stable/7/sys/ (props changed)
stable/7/sys/contrib/pf/ (props changed)
stable/7/sys/dev/aic7xxx/aicasm/aicasm.c
Modified: stable/7/sys/dev/aic7xxx/aicasm/aicasm.c
==============================================================================
--- stable/7/sys/dev/aic7xxx/aicasm/aicasm.c Sat Oct 31 11:08:04 2009 (r198711)
+++ stable/7/sys/dev/aic7xxx/aicasm/aicasm.c Sat Oct 31 11:21:45 2009 (r198712)
@@ -641,6 +641,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);
More information about the svn-src-stable
mailing list