oggdemux: silence a maybe-unitialized warning

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7875>
This commit is contained in:
Matthew Waters 2024-11-13 16:57:42 +11:00
parent 3743f69c85
commit e2d143f65d

View file

@ -4916,7 +4916,7 @@ gst_ogg_demux_loop (GstOggPad * pad)
{ {
GstOggDemux *ogg; GstOggDemux *ogg;
gboolean res; gboolean res;
GstFlowReturn ret; GstFlowReturn ret = GST_FLOW_ERROR;
GstEvent *seek; GstEvent *seek;
ogg = GST_OGG_DEMUX (GST_OBJECT_PARENT (pad)); ogg = GST_OGG_DEMUX (GST_OBJECT_PARENT (pad));