mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
Fix pagehash resource leak, CID 1536895
This commit is contained in:
parent
3e7247d9dc
commit
46e9ee447f
2
pe.c
2
pe.c
@ -345,8 +345,10 @@ static int pe_verify_indirect_data(FILE_FORMAT_CTX *ctx, SpcAttributeTypeAndOpti
|
|||||||
}
|
}
|
||||||
if (!pe_verify_page_hash(ctx, ph, phlen, phtype)) {
|
if (!pe_verify_page_hash(ctx, ph, phlen, phtype)) {
|
||||||
printf("Page hash verification: failed\n\n");
|
printf("Page hash verification: failed\n\n");
|
||||||
|
OPENSSL_free(ph);
|
||||||
return 0; /* FAILED */
|
return 0; /* FAILED */
|
||||||
}
|
}
|
||||||
|
OPENSSL_free(ph);
|
||||||
return 1; /* OK */
|
return 1; /* OK */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user