Add a missing free() call.

PR:		138379
Submitted by:	Patroklos Argyroudis <argp@census-labs.com>
Reviewed by:	gibbs
MFC after:	1 week
This commit is contained in:
Christian Brueffer 2009-10-21 14:09:06 +00:00
parent 8e7cccb3bd
commit 56d7cd7cf1

View File

@ -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);