summaryrefslogtreecommitdiffstats
path: root/meta/packages/gstreamer/gstreamer-0.10.29/gst-inspect-check-error.patch
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2010-06-26 14:51:07 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-06-30 13:14:34 +0100
commit2c2b1e5d3a0dfb2df52009c27e607ac738f63204 (patch)
treef810d79b2da32db3609b716b76a9e1d28a88d513 /meta/packages/gstreamer/gstreamer-0.10.29/gst-inspect-check-error.patch
parent52f5ad8ec703452094c0166a5a159877cc4bb9ba (diff)
downloadpoky-2c2b1e5d3a0dfb2df52009c27e607ac738f63204.tar.gz
gstreamer: Upgraded to version 0.10.29
Rebase check_fix.patch Remove po-makefile-fix.patch since it is not being used Remove do_configure_prepend since ${S}/common/m4/lib-link.m4 is not exist in the latest version Change the local file directory name to ${PN}-${PV} Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/packages/gstreamer/gstreamer-0.10.29/gst-inspect-check-error.patch')
-rw-r--r--meta/packages/gstreamer/gstreamer-0.10.29/gst-inspect-check-error.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/packages/gstreamer/gstreamer-0.10.29/gst-inspect-check-error.patch b/meta/packages/gstreamer/gstreamer-0.10.29/gst-inspect-check-error.patch
new file mode 100644
index 0000000000..4ca1dbe6ab
--- /dev/null
+++ b/meta/packages/gstreamer/gstreamer-0.10.29/gst-inspect-check-error.patch
@@ -0,0 +1,14 @@
1# Fix crash with gst-inspect
2# Chris Lord <chris@openedhand.com>
3
4--- gstreamer-0.10.9/tools/gst-inspect.c.old 2006-09-12 11:56:53.000000000 +0100
5+++ gstreamer-0.10.9/tools/gst-inspect.c 2006-09-12 11:57:27.000000000 +0100
6@@ -1123,7 +1123,7 @@
7 g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
8 g_option_context_add_group (ctx, gst_init_get_option_group ());
9 if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
10- g_print ("Error initializing: %s\n", err->message);
11+ g_print ("Error initializing: %s\n", err ? err->message : "(null)");
12 exit (1);
13 }
14 g_option_context_free (ctx);