mirror of https://git.ffmpeg.org/ffmpeg.git
avdevice/lavfi: Use av_malloc_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b2d1e22c2a
commit
3a10bf93b5
|
@ -211,7 +211,7 @@ av_cold static int lavfi_read_header(AVFormatContext *avctx)
|
|||
}
|
||||
|
||||
/* create a sink for each output and connect them to the graph */
|
||||
lavfi->sinks = av_malloc(sizeof(AVFilterContext *) * avctx->nb_streams);
|
||||
lavfi->sinks = av_malloc_array(avctx->nb_streams, sizeof(AVFilterContext *));
|
||||
if (!lavfi->sinks)
|
||||
FAIL(AVERROR(ENOMEM));
|
||||
|
||||
|
|
Loading…
Reference in New Issue