1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Fix some ordering in hashcat_destroy()

This commit is contained in:
jsteube 2023-09-28 11:47:45 +00:00
parent c59b4bffd5
commit 8fbecc00cc

View File

@ -1098,8 +1098,8 @@ int hashcat_init (hashcat_ctx_t *hashcat_ctx, void (*event) (const u32, struct h
void hashcat_destroy (hashcat_ctx_t *hashcat_ctx)
{
hcfree (hashcat_ctx->brain_ctx);
hcfree (hashcat_ctx->bitmap_ctx);
hcfree (hashcat_ctx->brain_ctx);
hcfree (hashcat_ctx->combinator_ctx);
hcfree (hashcat_ctx->cpt_ctx);
hcfree (hashcat_ctx->debugfile_ctx);