[Gstreamer-bugs] [Bug 137448] Changed - mpegaudioparse: crash (bus error)

bugzilla-daemon at widget.gnome.org bugzilla-daemon at widget.gnome.org
Tue Mar 16 18:15:24 PST 2004


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

http://bugzilla.gnome.org/show_bug.cgi?id=137448

Changed by rbultje at ronald.bitfreak.net.

--- shadow/137448	Tue Mar 16 21:14:09 2004
+++ shadow/137448.tmp.7162	Tue Mar 16 21:15:24 2004
@@ -98,6 +98,18 @@
 -Tim
 
 ------- Additional Comments From t.i.m at zen.co.uk  2004-03-16 21:13 -------
 Created an attachment (id=25708)
 gstreamer debug output
 
+
+------- Additional Comments From rbultje at ronald.bitfreak.net  2004-03-16 21:15 -------
+Line 333 is interesting...
+
+for (; ((data[offset] != 0xff) && (offset < size)); offset++) 
+
+That should be:
+
+for (; ((offset < size) && (data[offset] != 0xff)); offset++) 
+
+Can you please try out this patch? I'll test later tonight or later
+this week myself (currently debugging other bugs ;) ).




More information about the Gstreamer-bugs mailing list