summaryrefslogtreecommitdiff
path: root/meta/recipes-multimedia/gstreamer/gstreamer-0.10.31/gst-inspect-check-error.patch
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2011-04-12 16:08:54 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-18 05:42:38 +0100
commit9d48b74220d899a0aebc7e05abdf19882ebf1579 (patch)
treecc6bef7f2b0d8418b64a74a265edd179b2d8a3be /meta/recipes-multimedia/gstreamer/gstreamer-0.10.31/gst-inspect-check-error.patch
parent7105e626bc77c6678a7dada381d20ad2676c8443 (diff)
downloadopenembedded-core-9d48b74220d899a0aebc7e05abdf19882ebf1579.tar.gz
openembedded-core-9d48b74220d899a0aebc7e05abdf19882ebf1579.tar.bz2
openembedded-core-9d48b74220d899a0aebc7e05abdf19882ebf1579.tar.xz
openembedded-core-9d48b74220d899a0aebc7e05abdf19882ebf1579.zip
gstreamer: upgrade to vesion 0.10.32
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer-0.10.31/gst-inspect-check-error.patch')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer-0.10.31/gst-inspect-check-error.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer-0.10.31/gst-inspect-check-error.patch b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.31/gst-inspect-check-error.patch
deleted file mode 100644
index 4ca1dbe6a..000000000
--- a/meta/recipes-multimedia/gstreamer/gstreamer-0.10.31/gst-inspect-check-error.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-# Fix crash with gst-inspect
-# Chris Lord <chris@openedhand.com>
-
---- gstreamer-0.10.9/tools/gst-inspect.c.old 2006-09-12 11:56:53.000000000 +0100
-+++ gstreamer-0.10.9/tools/gst-inspect.c 2006-09-12 11:57:27.000000000 +0100
-@@ -1123,7 +1123,7 @@
- g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
- g_option_context_add_group (ctx, gst_init_get_option_group ());
- if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
-- g_print ("Error initializing: %s\n", err->message);
-+ g_print ("Error initializing: %s\n", err ? err->message : "(null)");
- exit (1);
- }
- g_option_context_free (ctx);