fix memory leak

This commit is contained in:
olszomal 2022-02-25 10:18:45 +01:00 committed by Michał Trojnara
parent 5f60cc6563
commit 85594d9fb2

1
msi.c
View File

@ -466,6 +466,7 @@ int msi_dirent_new(MSI_FILE *msi, MSI_ENTRY *entry, MSI_DIRENT *parent, MSI_DIRE
|| (entry->rightSiblingID != NOSTREAM && tortoise->entry->rightSiblingID == entry->rightSiblingID)
|| (entry->childID != NOSTREAM && tortoise->entry->childID == entry->childID)) {
printf("MSI_ENTRY cycle detected at level %d\n", cnt);
OPENSSL_free(entry);
return 0; /* FAILED */
}
}