mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-29 14:30:27 +00:00
avformat/mpegtsenc: use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
083b6e739b
commit
337f74868c
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user