bitlk: Fix memory leak when freeing bitlk_fvek structure

This commit is contained in:
Vojtech Trefny
2020-05-15 17:15:07 +02:00
parent dcc9888350
commit 86cc67e081

View File

@@ -415,6 +415,7 @@ void BITLK_bitlk_fvek_free(struct bitlk_fvek *fvek)
return;
crypt_free_volume_key(fvek->vk);
free(fvek);
}
void BITLK_bitlk_vmk_free(struct bitlk_vmk *vmk)