Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
e9aaea04
Commit
e9aaea04
authored
Aug 07, 2009
by
Aric Stewart
Committed by
Alexandre Julliard
Aug 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemp3: A fix for security alert CVE-2006-1655.
parent
b7a852b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
layer3.c
dlls/winemp3.acm/layer3.c
+6
-3
No files found.
dlls/winemp3.acm/layer3.c
View file @
e9aaea04
...
...
@@ -1061,8 +1061,9 @@ maybe still wrong??? (copy 12 to 13?) */
* and mode = mixed_mode
*/
int
sfb
=
gr_info
->
maxbandl
;
int
idx
=
bi
->
longIdx
[
sfb
];
int
idx
;
if
(
sfb
>
21
)
return
;
/* similarity fix related to CVE-2006-1655 */
idx
=
bi
->
longIdx
[
sfb
];
for
(
;
sfb
<
8
;
sfb
++
)
{
int
sb
=
bi
->
longDiff
[
sfb
];
...
...
@@ -1085,7 +1086,9 @@ maybe still wrong??? (copy 12 to 13?) */
else
/* ((gr_info->block_type != 2)) */
{
int
sfb
=
gr_info
->
maxbandl
;
int
is_p
,
idx
=
bi
->
longIdx
[
sfb
];
int
is_p
,
idx
;
if
(
sfb
>
21
)
return
;
/* tightened fix for CVE-2006-1655 */
idx
=
bi
->
longIdx
[
sfb
];
for
(
;
sfb
<
21
;
sfb
++
)
{
int
sb
=
bi
->
longDiff
[
sfb
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment