flacparse: Fix unitialized variable on macosx

This commit is contained in:
Edward Hervey 2011-01-06 12:49:43 +01:00
parent 84406fde30
commit 063be2f972

View file

@ -898,7 +898,7 @@ static void
gst_flac_parse_process_seektable (GstFlacParse * flacparse, gint64 boffset)
{
GstByteReader br;
gint64 offset, samples;
gint64 offset = 0, samples = 0;
GST_DEBUG_OBJECT (flacparse,
"parsing seektable; base offset %" G_GINT64_FORMAT, boffset);