mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 15:27:53 +00:00
Free servinfo after p is checked in setup stratum socket.
This commit is contained in:
parent
31aa4f6ceb
commit
1a43cb0b17
3
util.c
3
util.c
@ -1525,12 +1525,13 @@ static bool setup_stratum_socket(struct pool *pool)
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
freeaddrinfo(servinfo);
|
|
||||||
if (p == NULL) {
|
if (p == NULL) {
|
||||||
applog(LOG_WARNING, "Failed to find servinfo on %s:%s",
|
applog(LOG_WARNING, "Failed to find servinfo on %s:%s",
|
||||||
pool->sockaddr_url, pool->stratum_port);
|
pool->sockaddr_url, pool->stratum_port);
|
||||||
|
freeaddrinfo(servinfo);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
freeaddrinfo(servinfo);
|
||||||
|
|
||||||
if (!pool->sockbuf) {
|
if (!pool->sockbuf) {
|
||||||
pool->sockbuf = calloc(RBUFSIZE, 1);
|
pool->sockbuf = calloc(RBUFSIZE, 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user