summaryrefslogtreecommitdiff
path: root/meta/recipes-multimedia/gstreamer/gstreamer-0.10.30/gst-inspect-check-error.patch
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2010-11-12 10:42:20 +0800
committerSaul Wold <sgw@linux.intel.com>2010-11-14 21:08:23 -0800
commitcb7df0ce2da8106e96c2b0c6ea32002863b30f47 (patch)
tree34f2fa5c1e3c379215714ed4b100d92e69d2e594 /meta/recipes-multimedia/gstreamer/gstreamer-0.10.30/gst-inspect-check-error.patch
parent7e7bb24b8512dd1452a11d8aeafc8dedcbc4d623 (diff)
downloadopenembedded-core-cb7df0ce2da8106e96c2b0c6ea32002863b30f47.tar.gz
openembedded-core-cb7df0ce2da8106e96c2b0c6ea32002863b30f47.tar.bz2
openembedded-core-cb7df0ce2da8106e96c2b0c6ea32002863b30f47.tar.xz
openembedded-core-cb7df0ce2da8106e96c2b0c6ea32002863b30f47.zip
gstreamer: Upgrade to version 0.10.30
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer-0.10.30/gst-inspect-check-error.patch')
-rw-r--r--meta/recipes-multimedia/gstreamer/gstreamer-0.10.30/gst-inspect-check-error.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer-0.10.30/gst-inspect-check-error.patch b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.30/gst-inspect-check-error.patch
new file mode 100644
index 000000000..4ca1dbe6a
--- /dev/null
+++ b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.30/gst-inspect-check-error.patch
@@ -0,0 +1,14 @@
+# 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);