mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
pad: fix 'res' may be used uninitialized in this function
This commit is contained in:
parent
3a501deb3e
commit
66c88c1bb1
1 changed files with 1 additions and 1 deletions
|
@ -4464,7 +4464,7 @@ idle_probe_stopped:
|
|||
gboolean
|
||||
gst_pad_push_event (GstPad * pad, GstEvent * event)
|
||||
{
|
||||
gboolean res;
|
||||
gboolean res = FALSE;
|
||||
GstPadProbeType type;
|
||||
gboolean sticky, serialized;
|
||||
|
||||
|
|
Loading…
Reference in a new issue