From 944540292567f0349bd465bd5ae86ff114364ad1 Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Thu, 6 Dec 2012 20:45:42 +0000 Subject: It helps if we actually assign the listener to the pool. git-svn-id: https://origsvn.digium.com/svn/asterisk/team/mmichelson/threadpool@377352 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/threadpool.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/threadpool.c b/main/threadpool.c index bc0187f1e..1da0d0766 100644 --- a/main/threadpool.c +++ b/main/threadpool.c @@ -623,6 +623,8 @@ struct ast_threadpool *ast_threadpool_create(struct ast_threadpool_listener *lis pool = tps_listener->private_data; pool->tps = tps; + ao2_ref(listener, +1); + pool->listener = listener; ast_threadpool_set_size(pool, initial_size); return pool; } -- cgit v1.2.3