mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
aggregator: fix "'aggclass' may be used uninitialized in this function"
This commit is contained in:
parent
474acca0a8
commit
7b82eb546f
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