Fix CFFOLDER hashing

This commit is contained in:
olszomal 2023-05-26 10:31:37 +02:00 committed by Michał Trojnara
parent c6990878c2
commit dc44ed5f5b

2
cab.c
View File

@ -274,7 +274,7 @@ static u_char *cab_digest_calc(FILE_FORMAT_CTX *ctx, const EVP_MD *md)
* (u8 * cFolders) CFFOLDER - structure contains information about * (u8 * cFolders) CFFOLDER - structure contains information about
* one of the folders or partial folders stored in this cabinet file * one of the folders or partial folders stored in this cabinet file
*/ */
while (nfolders) { while (nfolders && idx < fileend) {
BIO_write(bhash, ctx->options->indata + idx, 8); BIO_write(bhash, ctx->options->indata + idx, 8);
idx += 8; idx += 8;
nfolders--; nfolders--;