svn commit: r198327 - head/sys/dev/aic7xxx/aicasm

Christian Brueffer brueffer at FreeBSD.org
Wed Oct 21 14:09:07 UTC 2009


Author: brueffer
Date: Wed Oct 21 14:09:06 2009
New Revision: 198327
URL: http://svn.freebsd.org/changeset/base/198327

Log:
  Add a missing free() call.
  
  PR:		138379
  Submitted by:	Patroklos Argyroudis <argp at census-labs.com>
  Reviewed by:	gibbs
  MFC after:	1 week

Modified:
  head/sys/dev/aic7xxx/aicasm/aicasm.c

Modified: head/sys/dev/aic7xxx/aicasm/aicasm.c
==============================================================================
--- head/sys/dev/aic7xxx/aicasm/aicasm.c	Wed Oct 21 14:05:51 2009	(r198326)
+++ head/sys/dev/aic7xxx/aicasm/aicasm.c	Wed Oct 21 14:09:06 2009	(r198327)
@@ -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-all mailing list