diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-01-26 16:23:32 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-30 11:36:59 +0000 |
commit | 7003698f29eb033ed02eed2178c6a1afe9c53d3b (patch) | |
tree | 41ecb4d84482160a5d34903b21c693dc1b48d252 /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad | |
parent | 6e90145ed9423ad37dbbd61c336d835ca7715da9 (diff) | |
download | poky-7003698f29eb033ed02eed2178c6a1afe9c53d3b.tar.gz |
gstreamer1.0-plugins-bad: fix compiler warnings with -Os in 1.7.1
(From OE-Core rev: 12c7c6af9d77b2484eaa686e5fe02b5df0334e91)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch new file mode 100644 index 0000000000..5ce57714e7 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/fix-maybe-uninitialized-warnings-when-compiling-with-Os.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From a67781000e82bd9ae3813da29401e8c0c852328a Mon Sep 17 00:00:00 2001 | ||
2 | From: Andre McCurdy <armccurdy@gmail.com> | ||
3 | Date: Tue, 26 Jan 2016 15:16:01 -0800 | ||
4 | Subject: [PATCH] fix maybe-uninitialized warnings when compiling with -Os | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | ||
9 | --- | ||
10 | gst-libs/gst/codecparsers/gstvc1parser.c | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/gst-libs/gst/codecparsers/gstvc1parser.c b/gst-libs/gst/codecparsers/gstvc1parser.c | ||
14 | index fd16ee0..ddb890c 100644 | ||
15 | --- a/gst-libs/gst/codecparsers/gstvc1parser.c | ||
16 | +++ b/gst-libs/gst/codecparsers/gstvc1parser.c | ||
17 | @@ -1729,7 +1729,7 @@ gst_vc1_parse_sequence_layer (const guint8 * data, gsize size, | ||
18 | GstVC1SeqLayer * seqlayer) | ||
19 | { | ||
20 | guint32 tmp; | ||
21 | - guint8 tmp8; | ||
22 | + guint8 tmp8 = 0; | ||
23 | guint8 structA[8] = { 0, }; | ||
24 | guint8 structB[12] = { 0, }; | ||
25 | GstBitReader br; | ||
26 | -- | ||
27 | 1.9.1 | ||
28 | |||