From 83455ef06c4bf30389cf0a4a21ef604339b522bc Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 22 Jan 2015 16:33:12 +1100 Subject: [PATCH] Fix minor memleak in send_recv_auth --- src/stratifier.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stratifier.c b/src/stratifier.c index d7871dd1..d5c052d4 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -2069,6 +2069,7 @@ static int send_recv_auth(stratum_instance_t *client) out_fail: ret = -1; out: + free(buf); return ret; }