gst/typefind/gsttypefindfunctions.c: Fix for variable not initialized.

Original commit message from CVS:
* gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
Fix for variable not initialized.
This commit is contained in:
Edward Hervey 2006-03-10 10:44:02 +00:00
parent 7664e11606
commit 72122e4a86
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2006-03-10 Edward Hervey <edward@fluendo.com>
* gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
Fix for variable not initialized.
2006-03-09 Wim Taymans <wim@fluendo.com>
* ext/libvisual/visual.c: (gst_visual_get_type),

2
common

@ -1 +1 @@
Subproject commit d576cc6779aa9555121d4c78ab69cc620fae3e2b
Subproject commit 9200457d08a57f0d7eaeb56915804fa8faf14418

View file

@ -586,7 +586,7 @@ mp3_type_find_at_offset (GstTypeFind * tf, guint64 start_off,
guint * found_layer, GstTypeFindProbability * found_prob)
{
guint8 *data = NULL;
guint8 *data_end;
guint8 *data_end = NULL;
guint size;
guint64 skipped;
gint last_free_offset = -1;