fix memory leak

This commit is contained in:
2025-08-04 01:07:29 +02:00
parent 2934de12dd
commit 11bb7070da
3 changed files with 41 additions and 20 deletions

View File

@@ -10,6 +10,8 @@
typedef struct cws_task_t {
int client_fd;
int epfd;
mcl_hashmap *clients;
cws_config *config;
} cws_task;