gst/avi/gstavidemux.c: Initialise variable to get rid of bogus compiler warning.

Original commit message from CVS:
* gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
Initialise variable to get rid of bogus compiler warning.
This commit is contained in:
Tim-Philipp Müller 2006-11-16 15:04:55 +00:00
parent 77fe86dc4e
commit 6b16453ab4
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-11-16 Tim-Philipp Müller <tim at centricular dot net>
* gst/avi/gstavidemux.c: (gst_avi_demux_stream_scan):
Initialise variable to get rid of bogus compiler warning.
2006-11-16 Stefan Kost <ensonic@users.sf.net>
Patch by: Ville Syrjala <ville.syrjala@movial.fi>

View file

@ -1897,7 +1897,7 @@ gst_avi_demux_stream_scan (GstAviDemux * avi,
while (1) {
gint stream_nr;
guint size;
guint size = 0;
gint64 tmpts, tmpnextts;
res = gst_avi_demux_next_data_buffer (avi, &pos, &tag, &size);