summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gstreamer-0.10.32/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:49:17 +0100
commit687f34ca5bf5be763893ec6df8c87b8291df867f (patch)
tree0fa289f0308bd82192c90fbbe0bc44b6d9f9d19e /meta/recipes-multimedia/gstreamer/gstreamer-0.10.32/gst-inspect-check-error.patch
parent6bf6aec120744211fbabf2b4a167bfd1ab5866fd (diff)
downloadpoky-687f34ca5bf5be763893ec6df8c87b8291df867f.tar.gz
gstreamer: upgrade to vesion 0.10.32
(From OE-Core rev: 9d48b74220d899a0aebc7e05abdf19882ebf1579) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer-0.10.32/gst-inspect-check-error.patch')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer-0.10.32/gst-inspect-check-error.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer-0.10.32/gst-inspect-check-error.patch b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.32/gst-inspect-check-error.patch
new file mode 100644
index 0000000000..30be85f59d
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.32/gst-inspect-check-error.patch
@@ -0,0 +1,16 @@
1# Fix crash with gst-inspect
2# Chris Lord <chris@openedhand.com>
3
4Upstream-Status: Pending
5
6--- gstreamer-0.10.9/tools/gst-inspect.c.old 2006-09-12 11:56:53.000000000 +0100
7+++ gstreamer-0.10.9/tools/gst-inspect.c 2006-09-12 11:57:27.000000000 +0100
8@@ -1123,7 +1123,7 @@
9 g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
10 g_option_context_add_group (ctx, gst_init_get_option_group ());
11 if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
12- g_print ("Error initializing: %s\n", err->message);
13+ g_print ("Error initializing: %s\n", err ? err->message : "(null)");
14 exit (1);
15 }
16 g_option_context_free (ctx);