Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
deabb52a
Commit
deabb52a
authored
Dec 13, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ivi_common: check that scan pattern is set before using it.
Fixes CVE-2012-2791. CC: libav-stable@libav.org
parent
07acdd65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
ivi_common.c
libavcodec/ivi_common.c
+5
-0
No files found.
libavcodec/ivi_common.c
View file @
deabb52a
...
...
@@ -460,6 +460,11 @@ static int ivi_decode_blocks(GetBitContext *gb, IVIBandDesc *band, IVITile *tile
}
if
(
cbp
&
1
)
{
/* block coded ? */
if
(
!
band
->
scan
)
{
av_log
(
avctx
,
AV_LOG_ERROR
,
"Scan pattern is not set.
\n
"
);
return
AVERROR_INVALIDDATA
;
}
scan_pos
=
-
1
;
memset
(
trvec
,
0
,
num_coeffs
*
sizeof
(
trvec
[
0
]));
/* zero transform vector */
memset
(
col_flags
,
0
,
sizeof
(
col_flags
));
/* zero column flags */
...
...
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