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
81c1657a
Commit
81c1657a
authored
Aug 01, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/dvdsub_parser: Check buf_size before reading 32bit packet size
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
cfdb30d2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
dvdsub_parser.c
libavcodec/dvdsub_parser.c
+2
-1
No files found.
libavcodec/dvdsub_parser.c
View file @
81c1657a
...
@@ -45,8 +45,9 @@ static int dvdsub_parse(AVCodecParserContext *s,
...
@@ -45,8 +45,9 @@ static int dvdsub_parse(AVCodecParserContext *s,
DVDSubParseContext
*
pc
=
s
->
priv_data
;
DVDSubParseContext
*
pc
=
s
->
priv_data
;
if
(
pc
->
packet_index
==
0
)
{
if
(
pc
->
packet_index
==
0
)
{
if
(
buf_size
<
2
)
if
(
buf_size
<
2
||
AV_RB16
(
buf
)
&&
buf_size
<
6
)
{
return
buf_size
;
return
buf_size
;
}
pc
->
packet_len
=
AV_RB16
(
buf
);
pc
->
packet_len
=
AV_RB16
(
buf
);
if
(
pc
->
packet_len
==
0
)
/* HD-DVD subpicture packet */
if
(
pc
->
packet_len
==
0
)
/* HD-DVD subpicture packet */
pc
->
packet_len
=
AV_RB32
(
buf
+
2
);
pc
->
packet_len
=
AV_RB32
(
buf
+
2
);
...
...
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