mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +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)
|
||||
{
|
||||
GstAggregator *self = NULL;
|
||||
GstAggregatorClass *aggclass;
|
||||
GstAggregatorClass *aggclass = NULL;
|
||||
GstBuffer *buffer = NULL;
|
||||
|
||||
while (pad->priv->clipped_buffer == NULL &&
|
||||
|
|
Loading…
Reference in a new issue