GNOME Bugzilla – Bug 673576
Missing pointer dereference
Last modified: 2012-04-05 16:09:33 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)
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.