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
24e7e023
Commit
24e7e023
authored
Dec 02, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/crypto: Use av_memdup()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
00d4013d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
crypto.c
libavformat/crypto.c
+1
-2
No files found.
libavformat/crypto.c
View file @
24e7e023
...
@@ -91,10 +91,9 @@ static int set_aes_arg(CryptoContext *c, uint8_t **buf, int *buf_len,
...
@@ -91,10 +91,9 @@ static int set_aes_arg(CryptoContext *c, uint8_t **buf, int *buf_len,
desc
,
default_buf_len
,
BLOCKSIZE
);
desc
,
default_buf_len
,
BLOCKSIZE
);
return
AVERROR
(
EINVAL
);
return
AVERROR
(
EINVAL
);
}
}
*
buf
=
av_m
alloc
(
default_buf_len
);
*
buf
=
av_m
emdup
(
default_buf
,
default_buf_len
);
if
(
!*
buf
)
if
(
!*
buf
)
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
memcpy
(
*
buf
,
default_buf
,
default_buf_len
);
*
buf_len
=
default_buf_len
;
*
buf_len
=
default_buf_len
;
}
else
if
(
*
buf_len
!=
BLOCKSIZE
)
{
}
else
if
(
*
buf_len
!=
BLOCKSIZE
)
{
av_log
(
c
,
AV_LOG_ERROR
,
av_log
(
c
,
AV_LOG_ERROR
,
...
...
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