mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffmpeg: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
82ccefb904
commit
feaa31d354
4
ffmpeg.c
4
ffmpeg.c
@ -2150,7 +2150,7 @@ static void print_sdp(void)
|
||||
{
|
||||
char sdp[16384];
|
||||
int i;
|
||||
AVFormatContext **avc = av_malloc(sizeof(*avc) * nb_output_files);
|
||||
AVFormatContext **avc = av_malloc_array(sizeof(*avc), nb_output_files);
|
||||
|
||||
if (!avc)
|
||||
exit_program(1);
|
||||
@ -2285,7 +2285,7 @@ static void parse_forced_key_frames(char *kf, OutputStream *ost,
|
||||
if (*p == ',')
|
||||
n++;
|
||||
size = n;
|
||||
pts = av_malloc(sizeof(*pts) * size);
|
||||
pts = av_malloc_array(sizeof(*pts), size);
|
||||
if (!pts) {
|
||||
av_log(NULL, AV_LOG_FATAL, "Could not allocate forced key frames array.\n");
|
||||
exit_program(1);
|
||||
|
Loading…
Reference in New Issue
Block a user