Remove TODO

This commit is contained in:
flyingscorpio@clevo 2022-11-06 20:11:00 +01:00
parent 531595ac32
commit 8137883978
2 changed files with 1 additions and 4 deletions

3
TODO
View file

@ -1,3 +0,0 @@
common:
server:
client:

View file

@ -656,7 +656,7 @@ int send_group_message(int sender_id, int receiver_id, char* message) {
/* Thread, pop message from the message_buffer pipe, parse it and send it to the good ClientSender */
void *Dispatcher(void *arg) {
char buf[BUF_LEN];
char message[1024]; // TODO: replace by malloc
char message[1024];
char *token;
char *endptr = NULL;
char *rest = message;