Floyd's cycle-finding algorithm

This commit is contained in:
Michał Trojnara
2022-02-23 22:35:40 +01:00
parent 6eaf0d9368
commit b774a56aa9
3 changed files with 35 additions and 20 deletions

View File

@ -2919,7 +2919,7 @@ static int msi_verify_header(char *indata, uint32_t filesize, MSI_PARAMS *msipar
printf("Failed to get file entry\n");
return 0; /* FAILED */
}
if (!msi_dirent_new(msiparams->msi, root, NULL, NULL, &root_dir)) {
if (!msi_dirent_new(msiparams->msi, root, NULL, &root_dir)) {
printf("Failed to parse MSI_DIRENT struct\n");
OPENSSL_free(root);
return 0; /* FAILED */