diff --git a/ChangeLog b/ChangeLog index 1a212744a3..254aef2a55 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-03-10 Edward Hervey + + * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset): + Fix for variable not initialized. + 2006-03-09 Wim Taymans * ext/libvisual/visual.c: (gst_visual_get_type), diff --git a/common b/common index d576cc6779..9200457d08 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit d576cc6779aa9555121d4c78ab69cc620fae3e2b +Subproject commit 9200457d08a57f0d7eaeb56915804fa8faf14418 diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index 1aee61de67..d020b2d5cc 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -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;