1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Merge pull request #354 from kanoi/api

minor unlikely zero pointer test
This commit is contained in:
Con Kolivas 2012-12-09 23:58:54 -08:00
commit 70b6287627

View File

@ -2853,8 +2853,11 @@ static void recruit_curl(struct pool *pool)
{
struct curl_ent *ce = calloc(sizeof(struct curl_ent), 1);
if (unlikely(!ce))
quit(1, "Failed to calloc in recruit_curl");
ce->curl = curl_easy_init();
if (unlikely(!ce->curl || !ce))
if (unlikely(!ce->curl))
quit(1, "Failed to init in recruit_curl");
list_add(&ce->node, &pool->curlring);