cppcheck fix

This commit is contained in:
iceman1001 2022-01-08 15:05:03 +01:00
commit 7c7dfa7d39

View file

@ -250,9 +250,8 @@ static int zlib_decompress(FILE *infile, FILE *outfiles[], uint8_t num_outfiles,
fclose(outfiles[j]); fclose(outfiles[j]);
} }
} }
if (outbufall) {
free(outbufall); free(outbufall);
}
return (EXIT_SUCCESS); return (EXIT_SUCCESS);
} }