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 673576 - Missing pointer dereference
Missing pointer dereference
Status: RESOLVED OBSOLETE
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
0.10.x
Other Linux
: Normal major
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2012-04-05 14:27 UTC by Phil Wolff
Modified: 2012-04-05 16:09 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Phil Wolff 2012-04-05 14:27:09 UTC
Rhythmbox preferences request exits with segfault. Problem traced to gst-plugins-base-0.10.32/gst-libs/gst/pbutils/encoding-target.c line 718:

    if (!res || error != NULL)

Should read

    if (!res || *error != NULL)
Comment 1 Sebastian Dröge (slomo) 2012-04-05 16:09:33 UTC
The correct fix here is to use a different error variable internally. This was changed some time ago in GIT and is also fixed in the latest releases.