mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
aggregator: Avoid a maybe-uninitialized warning
Arch Linux x86_64, gcc 7.2.1-2, -Og -g3
This commit is contained in:
parent
d431ef7190
commit
4636477d81
1 changed files with 1 additions and 1 deletions
|
@ -384,7 +384,7 @@ gst_aggregator_pad_queue_is_empty (GstAggregatorPad * pad)
|
|||
static gboolean
|
||||
gst_aggregator_check_pads_ready (GstAggregator * self)
|
||||
{
|
||||
GstAggregatorPad *pad;
|
||||
GstAggregatorPad *pad = NULL;
|
||||
GList *l, *sinkpads;
|
||||
gboolean have_buffer = TRUE;
|
||||
gboolean have_event_or_query = FALSE;
|
||||
|
|
Loading…
Reference in a new issue