FTP icon indicating copy to clipboard operation
FTP copied to clipboard

Memory leak

Open Arinerron opened this issue 6 years ago • 0 comments

You mallocate a chunk for each request but don't free it. See below:

struct packet* data = (struct packet*) malloc(size_packet);

It never frees it though.

Arinerron avatar Aug 29 '19 03:08 Arinerron