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
e5dd4ae7
Commit
e5dd4ae7
authored
Feb 29, 2012
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
assdec: avoid a possible NULL dereference.
parent
1eabd71c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
assdec.c
libavcodec/assdec.c
+4
-1
No files found.
libavcodec/assdec.c
View file @
e5dd4ae7
...
...
@@ -41,8 +41,11 @@ static int ass_decode_frame(AVCodecContext *avctx, void *data, int *got_sub_ptr,
int
len
,
size
=
avpkt
->
size
;
while
(
size
>
0
)
{
int
duration
;
ASSDialog
*
dialog
=
ff_ass_split_dialog
(
avctx
->
priv_data
,
ptr
,
0
,
NULL
);
int
duration
=
dialog
->
end
-
dialog
->
start
;
if
(
!
dialog
)
return
AVERROR_INVALIDDATA
;
duration
=
dialog
->
end
-
dialog
->
start
;
len
=
ff_ass_add_rect
(
data
,
ptr
,
0
,
duration
,
1
);
if
(
len
<
0
)
return
len
;
...
...
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