matroska: Fix unitialized variable.

Yes, it's stupid, but macosx compilers are even more stupid.
This commit is contained in:
Edward Hervey 2009-12-18 12:44:50 +01:00
parent 3ac6f5e48b
commit 188725811f

View file

@ -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;