mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +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)
|
foreach_dispatch_function (GstPad * pad, PadEvent * ev, gpointer user_data)
|
||||||
{
|
{
|
||||||
ForeachDispatch *data = user_data;
|
ForeachDispatch *data = user_data;
|
||||||
gboolean ret;
|
gboolean ret = TRUE;
|
||||||
|
|
||||||
if (ev->event) {
|
if (ev->event) {
|
||||||
GST_OBJECT_UNLOCK (pad);
|
GST_OBJECT_UNLOCK (pad);
|
||||||
|
|
Loading…
Reference in a new issue