mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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:
parent
7664e11606
commit
72122e4a86
3 changed files with 7 additions and 2 deletions
|
@ -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
2
common
|
@ -1 +1 @@
|
|||
Subproject commit d576cc6779aa9555121d4c78ab69cc620fae3e2b
|
||||
Subproject commit 9200457d08a57f0d7eaeb56915804fa8faf14418
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue