Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-15-SP7:Update
libvorbis-doc
vorbis-CVE-2017-14160.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File vorbis-CVE-2017-14160.patch of Package libvorbis-doc
From 018ca26dece618457dd13585cad52941193c4a25 Mon Sep 17 00:00:00 2001 From: Thomas Daede <daede003@umn.edu> Date: Wed, 9 May 2018 14:56:59 -0700 Subject: [PATCH] CVE-2017-14160: fix bounds check on very low sample rates. --- lib/psy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/psy.c b/lib/psy.c index 422c6f1e412d..13101230ea3a 100644 --- a/lib/psy.c +++ b/lib/psy.c @@ -602,8 +602,9 @@ static void bark_noise_hybridmp(int n,const long *b, for (i = 0, x = 0.f;; i++, x += 1.f) { lo = b[i] >> 16; - if( lo>=0 ) break; hi = b[i] & 0xffff; + if( lo>=0 ) break; + if( hi>=n ) break; tN = N[hi] + N[-lo]; tX = X[hi] - X[-lo]; -- 2.17.0
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor