summaryrefslogtreecommitdiff
path: root/main/threadpool.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/threadpool.c')
-rw-r--r--main/threadpool.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/main/threadpool.c b/main/threadpool.c
index 8662c3a39..bc0187f1e 100644
--- a/main/threadpool.c
+++ b/main/threadpool.c
@@ -264,8 +264,6 @@ static void *threadpool_alloc(struct ast_taskprocessor_listener *listener)
return NULL;
}
- pool->tps = listener->tps;
-
ao2_ref(pool, +1);
return pool;
}
@@ -624,6 +622,7 @@ struct ast_threadpool *ast_threadpool_create(struct ast_threadpool_listener *lis
}
pool = tps_listener->private_data;
+ pool->tps = tps;
ast_threadpool_set_size(pool, initial_size);
return pool;
}