Fix another memory leak

This commit is contained in:
Quentin Dufour 2019-03-27 17:41:03 +01:00
parent da6815ec62
commit 283dfd82e1

View file

@ -2,6 +2,7 @@
void socks5_free_ctx(void* elem) {
struct socks5_ctx* ctx = elem;
free(ctx->addr);
free(ctx);
}