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
ed9245db
Commit
ed9245db
authored
Oct 05, 2013
by
Vittorio Giovara
Committed by
Anton Khirnov
Oct 12, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oggparsevorbis: check allocations
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
9c15ef35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
oggparsevorbis.c
libavformat/oggparsevorbis.c
+7
-3
No files found.
libavformat/oggparsevorbis.c
View file @
ed9245db
...
...
@@ -172,15 +172,17 @@ struct oggvorbis_private {
int
final_duration
;
};
static
unsigned
int
fixup_vorbis_headers
(
AVFormatContext
*
as
,
struct
oggvorbis_private
*
priv
,
uint8_t
**
buf
)
static
int
fixup_vorbis_headers
(
AVFormatContext
*
as
,
struct
oggvorbis_private
*
priv
,
uint8_t
**
buf
)
{
int
i
,
offset
,
len
,
err
;
unsigned
char
*
ptr
;
len
=
priv
->
len
[
0
]
+
priv
->
len
[
1
]
+
priv
->
len
[
2
];
ptr
=
*
buf
=
av_mallocz
(
len
+
len
/
255
+
64
);
if
(
!
ptr
)
return
AVERROR
(
ENOMEM
);
ptr
[
0
]
=
2
;
offset
=
1
;
...
...
@@ -236,6 +238,8 @@ static int vorbis_header(AVFormatContext *s, int idx)
priv
->
len
[
pkt_type
>>
1
]
=
os
->
psize
;
priv
->
packet
[
pkt_type
>>
1
]
=
av_mallocz
(
os
->
psize
);
if
(
!
priv
->
packet
[
pkt_type
>>
1
])
return
AVERROR
(
ENOMEM
);
memcpy
(
priv
->
packet
[
pkt_type
>>
1
],
os
->
buf
+
os
->
pstart
,
os
->
psize
);
if
(
os
->
buf
[
os
->
pstart
]
==
1
)
{
const
uint8_t
*
p
=
os
->
buf
+
os
->
pstart
+
7
;
/* skip "\001vorbis" tag */
...
...
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