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
6bdae41d
Commit
6bdae41d
authored
Mar 12, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
matroskadec: Check memory allocations
CC: libav-stable@libav.org
parent
c3bd1d60
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
matroskadec.c
libavformat/matroskadec.c
+6
-0
No files found.
libavformat/matroskadec.c
View file @
6bdae41d
...
...
@@ -1710,6 +1710,8 @@ static int matroska_parse_tracks(AVFormatContext *s)
return
AVERROR_INVALIDDATA
;
track
->
audio
.
buf
=
av_malloc
(
track
->
audio
.
frame_size
*
track
->
audio
.
sub_packet_h
);
if
(
!
track
->
audio
.
buf
)
return
AVERROR
(
ENOMEM
);
if
(
codec_id
==
AV_CODEC_ID_RA_288
)
{
st
->
codec
->
block_align
=
track
->
audio
.
coded_framesize
;
track
->
codec_priv
.
size
=
0
;
...
...
@@ -2270,6 +2272,10 @@ static int matroska_parse_frame(MatroskaDemuxContext *matroska,
offset
=
8
;
pkt
=
av_mallocz
(
sizeof
(
AVPacket
));
if
(
!
pkt
)
{
av_freep
(
&
pkt_data
);
return
AVERROR
(
ENOMEM
);
}
/* XXX: prevent data copy... */
if
(
av_new_packet
(
pkt
,
pkt_size
+
offset
)
<
0
)
{
av_free
(
pkt
);
...
...
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