diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2006-11-16 15:04:55 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2006-11-16 15:04:55 +0000 |
commit | 6b16453ab4ae2444f3864110605c12c99d4ccf12 (patch) | |
tree | 1f1e2b69b90902a1601618d201fcceff18a8ae79 | |
parent | 77fe86dc4e66235260006c234a5328e48ad843aa (diff) |
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.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gst/avi/gstavidemux.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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> diff --git a/gst/avi/gstavidemux.c b/gst/avi/gstavidemux.c index fa0ca016..76469e5c 100644 --- a/gst/avi/gstavidemux.c +++ b/gst/avi/gstavidemux.c @@ -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); |