Fixed msi dirent memory leak

This commit is contained in:
olszomal 2024-05-29 14:17:10 +02:00 committed by Michał Trojnara
parent 825c9dad7c
commit 996cf20fa9

2
msi.c
View File

@ -731,6 +731,8 @@ static MSI_CTX *msi_ctx_get(char *indata, uint32_t filesize)
if (!msi_dirent_new(msi, root, NULL, &(dirent))) {
printf("Failed to parse MSI_DIRENT struct\n");
msi_file_free(msi);
if (dirent)
msi_dirent_free(dirent);
return NULL; /* FAILED */
}
msi_ctx = OPENSSL_zalloc(sizeof(MSI_CTX));