1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-26 09:58:16 +00:00

Hashcat Context: Fixed a memory leak in shutdown phase

This commit is contained in:
jsteube 2018-01-31 16:42:04 +01:00
parent e2654efaa7
commit dd97799e4c
2 changed files with 2 additions and 0 deletions

View File

@ -46,6 +46,7 @@
- Documents: Added docs/limits.txt - Documents: Added docs/limits.txt
- Files: Copy include/ folder and its content when SHARED is set to 1 in Makefile - Files: Copy include/ folder and its content when SHARED is set to 1 in Makefile
- Files: Switched back to relative current working directory on windows to work around problems with unicode characters - Files: Switched back to relative current working directory on windows to work around problems with unicode characters
- Hashcat Context: Fixed a memory leak in shutdown phase
- Hash Parser: Changed the way large strings are handled/truncated within the event buffer if they are too large to fit - Hash Parser: Changed the way large strings are handled/truncated within the event buffer if they are too large to fit
- Hash Parser: Fixed a memory leak in shutdown phase - Hash Parser: Fixed a memory leak in shutdown phase
- Hash Parser: Fixed the use of strtok_r () calls - Hash Parser: Fixed the use of strtok_r () calls

View File

@ -879,6 +879,7 @@ void hashcat_destroy (hashcat_ctx_t *hashcat_ctx)
hcfree (hashcat_ctx->dictstat_ctx); hcfree (hashcat_ctx->dictstat_ctx);
hcfree (hashcat_ctx->event_ctx); hcfree (hashcat_ctx->event_ctx);
hcfree (hashcat_ctx->folder_config); hcfree (hashcat_ctx->folder_config);
hcfree (hashcat_ctx->hashcat_user);
hcfree (hashcat_ctx->hashconfig); hcfree (hashcat_ctx->hashconfig);
hcfree (hashcat_ctx->hashes); hcfree (hashcat_ctx->hashes);
hcfree (hashcat_ctx->hwmon_ctx); hcfree (hashcat_ctx->hwmon_ctx);