mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
pad: Fix uninitialized variable compiler warning
This commit is contained in:
parent
1b87f0c36a
commit
d500ffc300
1 changed files with 1 additions and 1 deletions
|
@ -5219,7 +5219,7 @@ static gboolean
|
|||
foreach_dispatch_function (GstPad * pad, PadEvent * ev, gpointer user_data)
|
||||
{
|
||||
ForeachDispatch *data = user_data;
|
||||
gboolean ret;
|
||||
gboolean ret = TRUE;
|
||||
|
||||
if (ev->event) {
|
||||
GST_OBJECT_UNLOCK (pad);
|
||||
|
|
Loading…
Reference in a new issue