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
17008a01
Commit
17008a01
authored
Mar 03, 2019
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/hcom: check that index into array is valid
parent
a367a932
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
hcom.c
libavcodec/hcom.c
+4
-0
No files found.
libavcodec/hcom.c
View file @
17008a01
...
...
@@ -63,6 +63,10 @@ static av_cold int hcom_init(AVCodecContext *avctx)
for
(
int
i
=
0
;
i
<
s
->
dict_entries
;
i
++
)
{
s
->
dict
[
i
].
l
=
AV_RB16
(
avctx
->
extradata
+
6
+
4
*
i
);
s
->
dict
[
i
].
r
=
AV_RB16
(
avctx
->
extradata
+
6
+
4
*
i
+
2
);
if
(
s
->
dict
[
i
].
l
>=
0
&&
(
s
->
dict
[
i
].
l
>=
s
->
dict_entries
||
s
->
dict
[
i
].
r
>=
s
->
dict_entries
))
return
AVERROR_INVALIDDATA
;
}
avctx
->
sample_fmt
=
AV_SAMPLE_FMT_U8
;
...
...
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