plugins/elements/gstqueue.c: Recheck queue filledness after signalling the overrun when we're about to leak downstrea...

Original commit message from CVS:
Patch by: Sjoerd Simons <sjoerd at luon dot net>
* plugins/elements/gstqueue.c: (gst_queue_chain):
Recheck queue filledness after signalling the overrun when we're about
to leak downstream because we released the lock when emitting the signal
and the queue could be empty again. Fixes #352345.
This commit is contained in:
Sjoerd Simons 2006-10-11 10:10:37 +00:00 committed by Wim Taymans
parent db8e173590
commit 37d07b450c
2 changed files with 16 additions and 0 deletions

View file

@ -1,3 +1,12 @@
2006-10-11 Wim Taymans <wim@fluendo.com>
Patch by: Sjoerd Simons <sjoerd at luon dot net>
* plugins/elements/gstqueue.c: (gst_queue_chain):
Recheck queue filledness after signalling the overrun when we're about
to leak downstream because we released the lock when emitting the signal
and the queue could be empty again. Fixes #352345.
2006-10-11 Tim-Philipp Müller <tim at centricular dot net>
* libs/gst/controller/gstcontroller.c: (gst_controller_new_list):

View file

@ -654,6 +654,13 @@ gst_queue_chain (GstPad * pad, GstBuffer * buffer)
GList *item;
GstMiniObject *leak = NULL;
if (!gst_queue_is_filled (queue)) {
/* Queue was emptied while we sent out the signal, so no need to drop */
GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
"queue emptied while emitting signal, not leaking buffer");
break;
}
GST_CAT_DEBUG_OBJECT (queue_dataflow, queue,
"queue is full, leaking buffer on downstream end");