After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 729127 - pesparse: Incorrect jumping condition when PES 2nd extension flag is not set
pesparse: Incorrect jumping condition when PES 2nd extension flag is not set
Status: RESOLVED DUPLICATE of bug 722096
Product: GStreamer
Classification: Platform
Component: gst-plugins-bad
1.2.3
Other Linux
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2014-04-28 16:29 UTC by Andreea Fulger
Modified: 2014-04-29 06:54 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Incorrect jumping condition when PES 2nd extension flag is not set (826 bytes, patch)
2014-04-28 16:29 UTC, Andreea Fulger
committed Details | Review

Description Andreea Fulger 2014-04-28 16:29:58 UTC
Created attachment 275362 [details] [review]
Incorrect jumping condition when PES 2nd extension flag is not set

If the PES extension flag is not set, we should go directly to the stuffing_byte label, but the jumping condition is incorrect :

if (!flags & 0x01)

instead of

if (!(flags & 0x01)).
Comment 1 Sebastian Dröge (slomo) 2014-04-29 06:54:15 UTC
Thanks for taking the time to report this bug.
This particular bug has already been reported into our bug tracking system, but we are happy to tell you that the problem has already been fixed. It should be solved in the next software version. You may want to check for a software upgrade.

*** This bug has been marked as a duplicate of bug 722096 ***