1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-23 16:38:29 +00:00

Fix missing free() in pidfile.c

This commit is contained in:
jsteube 2017-02-14 16:58:18 +01:00
parent 20ab1af2b3
commit b2c9172f65

View File

@ -31,6 +31,8 @@ static int check_running_process (hashcat_ctx_t *hashcat_ctx)
{ {
event_log_error (hashcat_ctx, "Cannot read %s", pidfile_filename); event_log_error (hashcat_ctx, "Cannot read %s", pidfile_filename);
hcfree (pd);
return -1; return -1;
} }