Commit 6a70fead authored by Paul B Mahol's avatar Paul B Mahol

avformat/nutenc: use av_calloc()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 1a3d142f
......@@ -680,10 +680,10 @@ static int nut_write_header(AVFormatContext *s)
nut->avf = s;
nut->stream = av_mallocz(sizeof(StreamContext ) * s->nb_streams);
nut->chapter = av_mallocz(sizeof(ChapterContext) * s->nb_chapters);
nut->time_base= av_mallocz(sizeof(AVRational ) *(s->nb_streams +
s->nb_chapters));
nut->stream = av_calloc(s->nb_streams, sizeof(*nut->stream ));
nut->chapter = av_calloc(s->nb_chapters, sizeof(*nut->chapter));
nut->time_base= av_calloc(s->nb_streams +
s->nb_chapters, sizeof(*nut->time_base));
if (!nut->stream || !nut->chapter || !nut->time_base) {
av_freep(&nut->stream);
av_freep(&nut->chapter);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment