1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-22 21:51:07 +00:00
This commit is contained in:
Jens Steube 2021-07-09 20:48:29 +02:00
commit 72d7048b7e

View File

@ -2251,6 +2251,8 @@ void *brain_server_handle_client (void *p)
brain_server_dbs->client_slots[client_idx] = 0;
hc_thread_mutex_unlock (brain_server_dbs->mux_dbs);
close (client_fd);
return NULL;
@ -2285,6 +2287,8 @@ void *brain_server_handle_client (void *p)
brain_server_dbs->client_slots[client_idx] = 0;
hc_thread_mutex_unlock (brain_server_dbs->mux_dbs);
close (client_fd);
return NULL;
@ -2324,6 +2328,10 @@ void *brain_server_handle_client (void *p)
{
brain_logging (stderr, 0, "%s\n", MSG_ENOMEM);
brain_server_dbs->client_slots[client_idx] = 0;
close (client_fd);
return NULL;
}