diff options
| author | Alexander Kanavin <alex.kanavin@gmail.com> | 2015-05-18 16:58:40 +0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-20 21:41:08 +0100 |
| commit | f8232d79aff4fa419c2a0e7ccae38615c9c1157a (patch) | |
| tree | 961c014e1a648027e8a53722c0b576fc8181ddeb /meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-qdm2-check-array-index-before-use-fix-out-of-array-a.patch | |
| parent | 443d25ace122ac91efc4e7412188623a2df9f120 (diff) | |
| download | poky-f8232d79aff4fa419c2a0e7ccae38615c9c1157a.tar.gz | |
gstreamer: remove 0.10 recipes
gstreamer 0.10 is still available from meta-openembedded/meta-multimedia
See also
https://bugzilla.yoctoproject.org/show_bug.cgi?id=6294
http://lists.openembedded.org/pipermail/openembedded-core/2015-April/104276.html
(From OE-Core rev: fe44ac167a2a76531af3519f3889fce92024567b)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-qdm2-check-array-index-before-use-fix-out-of-array-a.patch')
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-qdm2-check-array-index-before-use-fix-out-of-array-a.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-qdm2-check-array-index-before-use-fix-out-of-array-a.patch b/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-qdm2-check-array-index-before-use-fix-out-of-array-a.patch deleted file mode 100644 index 8c94232d6d..0000000000 --- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg-0.10.13/0001-qdm2-check-array-index-before-use-fix-out-of-array-a.patch +++ /dev/null | |||
| @@ -1,30 +0,0 @@ | |||
| 1 | gst-ffmpeg: qdm2: check array index before use, fix out of array | ||
| 2 | accesses | ||
| 3 | |||
| 4 | Upstream-Status: Backport | ||
| 5 | |||
| 6 | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind | ||
| 7 | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> | ||
| 8 | --- | ||
| 9 | libavcodec/qdm2.c | 5 +++++ | ||
| 10 | 1 files changed, 5 insertions(+), 0 deletions(-) | ||
| 11 | |||
| 12 | diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c | ||
| 13 | index 4cf4b2f..1dfb8d5 100644 | ||
| 14 | --- a/gst-libs/ext/libav/libavcodec/qdm2.c | ||
| 15 | +++ b/gst-libs/ext/libav/libavcodec/qdm2.c | ||
| 16 | @@ -1257,6 +1257,11 @@ static void qdm2_decode_super_block (QDM2Context *q) | ||
| 17 | for (i = 0; packet_bytes > 0; i++) { | ||
| 18 | int j; | ||
| 19 | |||
| 20 | + if (i>=FF_ARRAY_ELEMS(q->sub_packet_list_A)) { | ||
| 21 | + SAMPLES_NEEDED_2("too many packet bytes"); | ||
| 22 | + return; | ||
| 23 | + } | ||
| 24 | + | ||
| 25 | q->sub_packet_list_A[i].next = NULL; | ||
| 26 | |||
| 27 | if (i > 0) { | ||
| 28 | -- | ||
| 29 | 1.7.5.4 | ||
| 30 | |||
