summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/gstreamer/files/gstreamer-error_report.patch')
-rw-r--r--media-libs/gstreamer/files/gstreamer-error_report.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/media-libs/gstreamer/files/gstreamer-error_report.patch b/media-libs/gstreamer/files/gstreamer-error_report.patch
deleted file mode 100644
index 7254f4319f0f..000000000000
--- a/media-libs/gstreamer/files/gstreamer-error_report.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -ur gstreamer-0.6.0/gst/registries/gstxmlregistry.c gstreamer-0.6.0.patched/gst/registries/gstxmlregistry.c
---- gstreamer-0.6.0/gst/registries/gstxmlregistry.c 2003-01-16 22:22:06.000000000 +0100
-+++ gstreamer-0.6.0.patched/gst/registries/gstxmlregistry.c 2003-02-02 16:23:44.000000000 +0100
-@@ -625,11 +625,14 @@
- static GstRegistryReturn
- gst_xml_registry_load_plugin (GstRegistry *registry, GstPlugin *plugin)
- {
-+ GError *error = NULL;
- /* FIXME: add gerror support */
-- if (!gst_plugin_load_plugin (plugin, NULL)) {
-+ if (!gst_plugin_load_plugin (plugin, &error)) {
-+ if (error) {
-+ g_warning ("could not load plugin %s: %s", plugin->name, error->message);
-+ }
- return GST_REGISTRY_PLUGIN_LOAD_ERROR;
- }
--
- return GST_REGISTRY_OK;
- }
-