mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-21 17:21:13 +00:00
oggdemux: silence a maybe-unitialized warning
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7875>
This commit is contained in:
parent
3743f69c85
commit
e2d143f65d
1 changed files with 1 additions and 1 deletions
|
@ -4916,7 +4916,7 @@ gst_ogg_demux_loop (GstOggPad * pad)
|
|||
{
|
||||
GstOggDemux *ogg;
|
||||
gboolean res;
|
||||
GstFlowReturn ret;
|
||||
GstFlowReturn ret = GST_FLOW_ERROR;
|
||||
GstEvent *seek;
|
||||
|
||||
ogg = GST_OGG_DEMUX (GST_OBJECT_PARENT (pad));
|
||||
|
|
Loading…
Reference in a new issue