[Bug 733001] scanner: Selinux enhanced file rights not handled correctly
GStreamer (bugzilla.gnome.org)
bugzilla at gnome.org
Fri Jul 11 01:53:19 PDT 2014
https://bugzilla.gnome.org/show_bug.cgi?id=733001
GStreamer | gstreamer (core) | 0.3.3
--- Comment #8 from kasberger at heidenhain.de 2014-07-11 08:53:13 UTC ---
in gstplugin.c something like that would help ?
After a failed g_module_open we check it again with a g_module_open with LAZY
flags so we see if this occured because of unknown symbol or general dlopen
problems
module = g_module_open (filename, flags);
if (module == NULL) {
flags |= G_MODULE_BIND_LAZY;
module = g_module_open (filename, flags);
if (module == NULL) {
GST_CAT_WARNING (GST_CAT_PLUGIN_LOADING, "module_open failed: %s",
g_module_error ());
g_set_error (error,
GST_PLUGIN_ERROR, GST_PLUGIN_ERROR_MODULE, "Opening module failed:
%s",
g_module_error ());
/* If we failed to open the shared object, then it's probably because
a
* plugin is linked against the wrong libraries. Print out an
easy-to-see
* message in this case. */
--
Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the gstreamer-bugs
mailing list