diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2011-09-30 17:43:24 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-10 09:54:03 +0100 |
commit | 4b469908a15dc3730e75740c106f3ae89ba51b99 (patch) | |
tree | a3e7385295abe2bcb034cdbad38c786b70e7b683 /meta/recipes-multimedia/gstreamer/gstreamer-0.10.35/gst-inspect-check-error.patch | |
parent | eb709fceacab3ec33f38694d6238b96cb0474848 (diff) | |
download | openembedded-core-4b469908a15dc3730e75740c106f3ae89ba51b99.tar.gz openembedded-core-4b469908a15dc3730e75740c106f3ae89ba51b99.tar.bz2 openembedded-core-4b469908a15dc3730e75740c106f3ae89ba51b99.zip |
gstreamer: upgrade to 0.10.35
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer-0.10.35/gst-inspect-check-error.patch')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer-0.10.35/gst-inspect-check-error.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer-0.10.35/gst-inspect-check-error.patch b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.35/gst-inspect-check-error.patch new file mode 100644 index 0000000000..30be85f59d --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer-0.10.35/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); |