mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avformat/libnut: use av_mallocz_array()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f6d17d2aa9
commit
09cd22860f
@ -70,7 +70,7 @@ static int nut_write_header(AVFormatContext * avf) {
|
||||
nut_stream_header_tt * s;
|
||||
int i;
|
||||
|
||||
priv->s = s = av_mallocz((avf->nb_streams + 1) * sizeof*s);
|
||||
priv->s = s = av_mallocz_array(avf->nb_streams + 1, sizeof*s);
|
||||
if(!s)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user