Fix pagehash resource leak, CID 1536895

This commit is contained in:
olszomal 2023-03-29 08:35:31 +02:00 committed by Michał Trojnara
parent 3e7247d9dc
commit 46e9ee447f

2
pe.c
View File

@ -345,8 +345,10 @@ static int pe_verify_indirect_data(FILE_FORMAT_CTX *ctx, SpcAttributeTypeAndOpti
}
if (!pe_verify_page_hash(ctx, ph, phlen, phtype)) {
printf("Page hash verification: failed\n\n");
OPENSSL_free(ph);
return 0; /* FAILED */
}
OPENSSL_free(ph);
return 1; /* OK */
}