Don't try to reap curls if benchmarking is enabled.
diff --git a/cgminer.c b/cgminer.c
index 26259c6..58731a9 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -4058,7 +4058,8 @@ static void *watchpool_thread(void __maybe_unused *userdata)
for (i = 0; i < total_pools; i++) {
struct pool *pool = pools[i];
- reap_curl(pool);
+ if (!opt_benchmark)
+ reap_curl(pool);
if (!pool->enabled)
continue;