mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
matroska: Fix unitialized variable.
Yes, it's stupid, but macosx compilers are even more stupid.
This commit is contained in:
parent
3ac6f5e48b
commit
188725811f
1 changed files with 1 additions and 1 deletions
|
@ -5362,7 +5362,7 @@ gst_matroska_demux_chain (GstPad * pad, GstBuffer * buffer)
|
|||
GstEbmlRead *ebml = GST_EBML_READ (demux);
|
||||
guint available;
|
||||
GstFlowReturn ret = GST_FLOW_OK;
|
||||
guint needed;
|
||||
guint needed = 0;
|
||||
guint32 id;
|
||||
guint64 length;
|
||||
gchar *name;
|
||||
|
|
Loading…
Reference in a new issue