svn commit: r198710 - in stable/8/sys: . amd64/include/xen cddl/contrib/opensolaris contrib/dev/acpica contrib/pf dev/aic7xxx/aicasm dev/xen/xenpci

Christian Brueffer brueffer at FreeBSD.org
Sat Oct 31 10:59:54 UTC 2009


Author: brueffer
Date: Sat Oct 31 10:59:53 2009
New Revision: 198710
URL: http://svn.freebsd.org/changeset/base/198710

Log:
  MFC: r198327
  
  Add a missing free() call.

Modified:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/aic7xxx/aicasm/aicasm.c
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/aic7xxx/aicasm/aicasm.c
==============================================================================
--- stable/8/sys/dev/aic7xxx/aicasm/aicasm.c	Sat Oct 31 10:47:47 2009	(r198709)
+++ stable/8/sys/dev/aic7xxx/aicasm/aicasm.c	Sat Oct 31 10:59:53 2009	(r198710)
@@ -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);


More information about the svn-src-stable-8 mailing list