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
bc1eace1
Commit
bc1eace1
authored
Jun 03, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jack: Check memory allocation
CC: libav-stable@libav.org Bug-Id: CID 1292520
parent
f7e93247
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
jack.c
libavdevice/jack.c
+4
-0
No files found.
libavdevice/jack.c
View file @
bc1eace1
...
@@ -202,6 +202,10 @@ static int start_jack(AVFormatContext *context)
...
@@ -202,6 +202,10 @@ static int start_jack(AVFormatContext *context)
self
->
filled_pkts
=
av_fifo_alloc
(
FIFO_PACKETS_NUM
*
sizeof
(
AVPacket
));
self
->
filled_pkts
=
av_fifo_alloc
(
FIFO_PACKETS_NUM
*
sizeof
(
AVPacket
));
/* New packets FIFO with one extra packet for safety against underruns */
/* New packets FIFO with one extra packet for safety against underruns */
self
->
new_pkts
=
av_fifo_alloc
((
FIFO_PACKETS_NUM
+
1
)
*
sizeof
(
AVPacket
));
self
->
new_pkts
=
av_fifo_alloc
((
FIFO_PACKETS_NUM
+
1
)
*
sizeof
(
AVPacket
));
if
(
!
self
->
new_pkts
)
{
jack_client_close
(
self
->
client
);
return
AVERROR
(
ENOMEM
);
}
if
((
test
=
supply_new_packets
(
self
,
context
)))
{
if
((
test
=
supply_new_packets
(
self
,
context
)))
{
jack_client_close
(
self
->
client
);
jack_client_close
(
self
->
client
);
return
test
;
return
test
;
...
...
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