summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/libvorbis/libvorbis/CVE-2018-10392.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-multimedia/libvorbis/libvorbis/CVE-2018-10392.patch')
-rw-r--r--meta/recipes-multimedia/libvorbis/libvorbis/CVE-2018-10392.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/libvorbis/libvorbis/CVE-2018-10392.patch b/meta/recipes-multimedia/libvorbis/libvorbis/CVE-2018-10392.patch
new file mode 100644
index 0000000000..f1ef6fb9c7
--- /dev/null
+++ b/meta/recipes-multimedia/libvorbis/libvorbis/CVE-2018-10392.patch
@@ -0,0 +1,29 @@
1From 112d3bd0aaacad51305e1464d4b381dabad0e88b Mon Sep 17 00:00:00 2001
2From: Thomas Daede <daede003@umn.edu>
3Date: Thu, 17 May 2018 16:19:19 -0700
4Subject: [PATCH] Sanity check number of channels in setup.
5
6Fixes #2335.
7CVE: CVE-2018-10392
8Upstream-Status: Backport [https://gitlab.xiph.org/xiph/vorbis/commit/112d3bd0aaacad51305e1464d4b381dabad0e88b]
9
10Signed-off-by: Jagadeesh Krishnanjanappa <jkrishnanjanappa@mvista.com>
11---
12 lib/vorbisenc.c | 1 +
13 1 file changed, 1 insertion(+)
14
15diff --git a/lib/vorbisenc.c b/lib/vorbisenc.c
16index 4fc7b62..64a51b5 100644
17--- a/lib/vorbisenc.c
18+++ b/lib/vorbisenc.c
19@@ -684,6 +684,7 @@ int vorbis_encode_setup_init(vorbis_info *vi){
20 highlevel_encode_setup *hi=&ci->hi;
21
22 if(ci==NULL)return(OV_EINVAL);
23+ if(vi->channels<1||vi->channels>255)return(OV_EINVAL);
24 if(!hi->impulse_block_p)i0=1;
25
26 /* too low/high an ATH floater is nonsensical, but doesn't break anything */
27--
282.13.3
29