1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-21 23:58:07 +00:00

fix Resource leak

This commit is contained in:
wanhui 2023-06-30 09:24:17 +08:00
parent 6b625059a3
commit 62f80e798e

View File

@ -38,7 +38,7 @@ uLong* bytesRecovered;
FILE* fpZip = fopen(file, "rb");
FILE* fpOut = fopen(fileOut, "wb");
FILE* fpOutCD = fopen(fileOutTmp, "wb");
if (fpZip != NULL && fpOut != NULL) {
if (fpZip != NULL && fpOut != NULL && fpOutCD !=NULL) {
int entries = 0;
uLong totalBytes = 0;
char header[30];