task: fix taskpool leak

GstTaks does not always unref the taskpool it was created from because it
depends on when the pool provided an ID for joining the task.
Rework some code so that we always unref the pool and optionally join when the
pool provided an id.

Fixes #589127
This commit is contained in:
Wim Taymans 2009-07-20 15:44:36 +02:00
parent 141e2af580
commit a78199ae5e

View file

@ -749,16 +749,15 @@ gst_task_join (GstTask * task)
/* clean the thread */
task->abidata.ABI.thread = NULL;
/* get the id and pool to join */
if ((id = priv->id)) {
if ((pool = priv->pool_id))
gst_object_ref (pool);
priv->pool_id = NULL;
priv->id = NULL;
}
pool = priv->pool_id;
id = priv->id;
priv->pool_id = NULL;
priv->id = NULL;
GST_OBJECT_UNLOCK (task);
if (pool) {
gst_task_pool_join (pool, id);
if (id)
gst_task_pool_join (pool, id);
gst_object_unref (pool);
}