mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
aggregator: fix "'aggclass' may be used uninitialized in this function"
This commit is contained in:
parent
86ae9777ad
commit
179b583693
1 changed files with 1 additions and 1 deletions
|
@ -2855,7 +2855,7 @@ static void
|
||||||
gst_aggregator_pad_clip_buffer_unlocked (GstAggregatorPad * pad)
|
gst_aggregator_pad_clip_buffer_unlocked (GstAggregatorPad * pad)
|
||||||
{
|
{
|
||||||
GstAggregator *self = NULL;
|
GstAggregator *self = NULL;
|
||||||
GstAggregatorClass *aggclass;
|
GstAggregatorClass *aggclass = NULL;
|
||||||
GstBuffer *buffer = NULL;
|
GstBuffer *buffer = NULL;
|
||||||
|
|
||||||
while (pad->priv->clipped_buffer == NULL &&
|
while (pad->priv->clipped_buffer == NULL &&
|
||||||
|
|
Loading…
Reference in a new issue