Open Arinerron opened 5 years ago
You mallocate a chunk for each request but don't free it. See below:
malloc
struct packet* data = (struct packet*) malloc(size_packet);
It never frees it though.
free
You
malloc
ate a chunk for each request but don't free it. See below:It never
free
s it though.