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
ebe3a41e
Commit
ebe3a41e
authored
Jan 10, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/dvbsubdec: Add some av_malloc() failure checks
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
a4d3cf10
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
dvbsubdec.c
libavcodec/dvbsubdec.c
+4
-0
No files found.
libavcodec/dvbsubdec.c
View file @
ebe3a41e
...
...
@@ -1082,6 +1082,8 @@ static int dvbsub_parse_clut_segment(AVCodecContext *avctx,
if
(
!
clut
)
{
clut
=
av_malloc
(
sizeof
(
DVBSubCLUT
));
if
(
!
clut
)
return
AVERROR
(
ENOMEM
);
memcpy
(
clut
,
&
default_clut
,
sizeof
(
DVBSubCLUT
));
...
...
@@ -1169,6 +1171,8 @@ static void dvbsub_parse_region_segment(AVCodecContext *avctx,
if
(
!
region
)
{
region
=
av_mallocz
(
sizeof
(
DVBSubRegion
));
if
(
!
region
)
return
;
region
->
id
=
region_id
;
region
->
version
=
-
1
;
...
...
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