Don't leak outfile. Free it before we return from bincvt.

CID: 273685
This commit is contained in:
Warner Losh 2017-12-28 05:34:14 +00:00
parent 0bebba31d3
commit 80c3f90ed4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327274

View file

@ -213,6 +213,7 @@ bincvt(char *sysfile, char *outfile, void *img, int fsize)
tname, sysfile, tname, tname, sysfile, outfile, outfile);
printf("%s", sysbuf);
system(sysbuf);
free(outfile);
return;
}