You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/mpegtsenc: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -628,7 +628,7 @@ static int mpegts_write_header(AVFormatContext *s)
|
||||
ts->sdt.write_packet = section_write_packet;
|
||||
ts->sdt.opaque = s;
|
||||
|
||||
pids = av_malloc(s->nb_streams * sizeof(*pids));
|
||||
pids = av_malloc_array(s->nb_streams, sizeof(*pids));
|
||||
if (!pids)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
|
Reference in New Issue
Block a user