Add missing fclose() in mkembedconfig

This commit is contained in:
Gunnar Beutner 2015-03-02 07:34:11 +01:00
parent 7ca3a3c5e9
commit 6e55715a6c
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ int main(int argc, char **argv)
outfp = fopen(argv[2], "w");
if (!outfp) {
fclose(infp);
perror("fopen");
return EXIT_FAILURE;
}