summaryrefslogtreecommitdiff
path: root/meta/recipes-multimedia/gstreamer/gstreamer-0.10.36/gst-inspect-check-error.patch
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2012-03-14 15:48:56 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-21 12:40:07 +0000
commitf19fe90ef79f1311e38eaca7dfe7e5578139069f (patch)
treef1065ca5ebd53ab7009c3e9a3094ac2edc3859fa /meta/recipes-multimedia/gstreamer/gstreamer-0.10.36/gst-inspect-check-error.patch
parenteae2b9c21e9d57ad192eeded4301b548f7e3d5b5 (diff)
downloadopenembedded-core-f19fe90ef79f1311e38eaca7dfe7e5578139069f.tar.gz
openembedded-core-f19fe90ef79f1311e38eaca7dfe7e5578139069f.tar.bz2
openembedded-core-f19fe90ef79f1311e38eaca7dfe7e5578139069f.tar.xz
openembedded-core-f19fe90ef79f1311e38eaca7dfe7e5578139069f.zip
gstreamer: upgrade to 0.10.36
Signed-off-by: Shane Wang <shane.wang@intel.com>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer-0.10.36/gst-inspect-check-error.patch')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer-0.10.36/gst-inspect-check-error.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer-0.10.36/gst-inspect-check-error.patch b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.36/gst-inspect-check-error.patch
new file mode 100644
index 000000000..30be85f59
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.36/gst-inspect-check-error.patch
@@ -0,0 +1,16 @@
+# Fix crash with gst-inspect
+# Chris Lord <chris@openedhand.com>
+
+Upstream-Status: Pending
+
+--- 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);