Backport fix from HEAD

Original commit message from CVS:
Backport fix from HEAD
This commit is contained in:
Ronald S. Bultje 2003-04-16 22:08:47 +00:00
parent 0308849541
commit 1a2a989d15
2 changed files with 4 additions and 0 deletions

View file

@ -253,6 +253,8 @@ gst_queue_dispose (GObject *object)
{
GstQueue *queue = GST_QUEUE (object);
gst_element_set_state (GST_ELEMENT (queue), GST_STATE_NULL);
g_mutex_free (queue->qlock);
g_cond_free (queue->not_empty);
g_cond_free (queue->not_full);

View file

@ -253,6 +253,8 @@ gst_queue_dispose (GObject *object)
{
GstQueue *queue = GST_QUEUE (object);
gst_element_set_state (GST_ELEMENT (queue), GST_STATE_NULL);
g_mutex_free (queue->qlock);
g_cond_free (queue->not_empty);
g_cond_free (queue->not_full);